Skip to content

jay-gandhi/js_practice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

JavaScript Practice

This is JavaScript Tutorial.

Expression : No need to save to variable. Expressions loads only when the interpreter reaches that line of code.

ex. Function Expression
alert(foo()); // ERROR! foo wasn't loaded yet
var foo = function() { return 5; }

Function : Function declarations loads before any code is executed.

argument keyword : It contains array-like (Not an Array) of all arguments passed in function.

IIFEs : Immediately invoked Function Expression

About

JavaScript Practice

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published