Nothing here yet.
Nothing here yet.
Jan 23, 2022 · 2 min read · Function Declaration Function Expression Anonymous Function Expression Arrow function Function Declaration When a function is starting with keyword function that kind of function is known as function declration. ex- function add(a,b){ return a+b } a...
Join discussionJan 23, 2022 · 3 min read · Functions are a way to store series of steps that we do to perform certain actions. How to create a function Function(The keyword that create a box) addTwoNumber(Name of the Created box) Curley Brackets ( {} ) So whatever inside curley brackets is...
Join discussionJan 23, 2022 · 2 min read · Sometimes In our program we want to repeat some action multiple times. for-ex I want to console.log("Hello world") 4 times. The hard way to do that would be to wrote code again and again. this code works but the idea of programming is to make thing...
Join discussion