جافا سكربت 1
<script>
//single line comment
/*
multi
line
comment
*/
var x=5;
let y=6;
const z=10;
document.write(x);
document.write("output anything");
alert("this is an alert");
var w = prompt("user input ... ");
</script>