I'm having problem with this code:
what is the problem in this code ???
Code:
function check(){
element1 = 2;
element2= 110;
if(element1 > element2){
alert('Sorry, element1 should be less than element2');
}
}
Comment