<script>
var x,y,z; ⁄ ⁄declare vaariables
x=5;
y=10;
z=x+y;
document·write("Addition of "+ x +"+"+ y+"="+z+"<br/>");

</script>
Addition of 5+10=15