ify function code example
Example 1: IFFI in js
// This function will be invoked right away we don't have to call it
(function () {
console.log("This is an IIFE");
})();
Example 2: if function example
var hi = "hi";
if (hi == "hi") { //if the variable hi is "hi" then:
//Whatever you want to happen
} if (hi != "hi") {
//Whatever you don't want to happen
}