..Back
×
Easiest language
Author: Win2022-11-11 06:59:05PM
Java script is an easiest language which can run on any browser online or offline.
Write following and save a file with the extension of ".html".
Then open it in a browser. Script will run automatically.
Sample js code within html protocol.
<html>
<body>
<script>
document.write("hello");
</script>
</body>
<html>
Author: Win