Greater or Equal to
greater or equal to http://www.kirupa.com/html5/conditional_statements_if_else_switch_javascript.htm
JavaScript
var speedLimit = 55;
function amISpeeding(speed){
if(speed >= speedLimit){
alert("Yes. You are speeding.");
}else{
alert("No. You are not speeding. What's wrong with you?");
}
}
amISpeeding(50);