SOP2: Create JavaScript program for the following using appropriate variables, JavaScript inbuilt functions and control structures To accept two positive or negative numbers and check whether they are equal or not. <!DOCTYPE html> <html> <head> <title>sop2</title> </head> <body> <h1> To accept two positive or negative numbers and check whether they are equal or not </h1> <script language=javascript> var n1,n2 n1= prompt("Enter first number positive or negative","type here") n2= prompt("Enter second number positive or negative ","type here") if(n1==n2) document.write(n1+ " and " + n2+" are equal" ) else document.write(n1+ " and " + n2+" are not eq...