Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

<html>

<head>
<title>
I Like Functions
</title>

<body>
<script>

choose_operation = (prompt("Choose Operation : +,-,*,/"))


a = parseInt(prompt("Enter First Num : "))
b = parseInt(prompt("Enter Second Number : "))

function add(){
document.write(a+b)
}
function sub(){
document.write(a-b)
}
function mul(){
document.write(a*b)
}
function div(){
document.write(a/b)
}

if(choose_operation== "+"){
add()}

else if(choose_operation== "-"){


sub()}

else if(choose_operation== "*"){


mul()}

else{
div()

}
</script>
</body>
</head>
</html>

You might also like