JQuery if statement with variable mathematical operator - Javascript jQuery

Javascript examples for jQuery:Variable

Description

JQuery if statement with variable mathematical operator

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <script type="text/javascript" src="https://code.jquery.com/jquery-1.8.3.js"></script> 
      <script type="text/javascript">
    $(window).load(function(){/*w  w w. j a va2s. c  om*/
var one = "4";
var two = "4";
var op = "==";
if (eval(one + op + two) ){
    console.log("equal");
}
else console.log("not equal");
    });

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

Related Tutorials