Last active
September 6, 2016 02:51
-
-
Save DawTaylor/2bdf9c71ad818febb6e7e526297b42e1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict' | |
let f = process.argv[1] | |
console.log('Double negation usage sample. (!!)') | |
console.log('!var => ', !f) | |
console.log('!!var => ', !!f) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment