SAI YEWALE

Generation

typingsFri, 25 Nov 2022

write javascript code for arithmetic expression evaluation and print the result using message box.(accept the values from user)

var a = 10; var b = 20; var x = a + b; var y = a - b; var z = a * b; var w = a % b; alert(x); alert(y); alert(z); alert(w);

Questions about programming?Chat with your personal AI assistant