Files
JavaScript-from-Beginner-to…/Chapter 8/Code Samples/ch8_eval.html
T
2021-12-01 14:39:18 +01:00

12 lines
160 B
HTML

<html>
<body>
<input onchange="go(this)"></input>
<script>
function go(e) {
eval(e.value);
}
</script>
</body>
</html>