Files
JavaScript-from-Beginner-to…/Chapter 08/Code Samples/ch8_eval.html
T
brightboost 67a8d8a7a0 reorganizing
2021-12-02 21:21:10 +01:00

12 lines
160 B
HTML

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