Skip to content

Instantly share code, notes, and snippets.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kbakande
kbakande / arrFun3.js
Created March 15, 2021 03:05
Normal function 2
const fname = function (varInp) {
console.log(varInp)
}
@kbakande
kbakande / arrFun2.js
Created March 15, 2021 03:04
Normal Function in Javascript
function fname (varInp) {
console.log(varInp);
}
@kbakande
kbakande / .js
Created March 15, 2021 02:58
Arrow function
const crypticArrow = crypt => console.log("I am the ${crypt}ic one");