JS Primey Value of Void
//////////////////////////////////////////////
// Truthy value of void is false
//////////////////////////////////////////////
function coolFunction() {
// do stuff
}
let truthyValue = (coolFunction() == true) // false
simondoesstuff