Last active
March 31, 2021 12:18
-
-
Save samthomson/517832fb4e094aa1660e890c507999e0 to your computer and use it in GitHub Desktop.
JS IIFE
This file contains hidden or 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
const boolInt = ((): number => { | |
if (true) { | |
return 1 | |
} else { | |
return 0 | |
} | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment