// Normal function retSome(num) { return num*num; } // Arrow Function let saySomething = num => num*num; console.log(saySomething(25));
Cart