How can I make a javascript if function where if the query string does show as something other than undefined. Here is the code:
    var getQueryString = window.location.href.split("?")[1];
alert(getQueryString);  
Basically I wanted to do an if function in javascript. Here is the code:
    if (getQueryString = 1){
          //add code
    }
How can I set my javascript function?
 
     
    