Files
JavaScript-from-Beginner-to…/Chapter 11/ch11-evileval.html
T
2021-09-04 21:22:51 +02:00

10 lines
154 B
HTML
Executable File

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