Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.   const isParameterValid = () => {
  2.         let isParamValid = false
  3.         if (window.location.href.indexOf('=') > -1) {
  4.             isParamValid = true
  5.         }
  6.         return isParamValid
  7.     }
  8.  
  9.   const isParameterValid = window.location.href.includes('=');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement