#functions
Read more stories on Hashnode
Articles with this tag
Function borrowing allows us to use the methods of one object on a different object without having to make a copy of that method and maintain it in...
String Built in Function MethodDescriptionExamples charAt(index)Returns the character at the specified index"Hello".charAt(1) →...
Functions are reusable blocks of code that perform specific tasks Function Statement function hello(a){ console.log("Hello",a); // hello...