In PHP it's possible to use an exclamation mark to make an if statement mean if not.
Can you do this with javascript?
For instance can I use one on the code below to ask if not greater than or equal to?
Can you do this with javascript?
For instance can I use one on the code below to ask if not greater than or equal to?
Code:
if(user.length >= 4) {
Comment