Pankaj Sanam
Slashism

Slashism

Follow
homeJavascriptLaravelLinuxAboutbadgesnewsletter
Series

Javascript

Everything you need to know to master the Art of Javascript

Articles in this series

Arrow Functions in JavaScript

Oct 26, 20207 min read 418 views

Arrow functions are a new way of writing a traditional function. This way the function is shorter and quicker to write. Arrow functions were...

Arrow Functions in JavaScript

Hoisting in JavaScript

Oct 19, 20205 min read 252 views

Just so you know: Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope before code...

Hoisting in JavaScript

Variable Scope in JavaScript

Oct 11, 20207 min read 796 views

A scope is an area/limit where your variables stay and can only be accessed by other parts of the code in the same area/limit. Sounds confusing? Let's...

Variable Scope in JavaScript

Variable Types in Javascript

Oct 4, 20205 min read 512 views

Primitive and non-primitive data types in Javascript · This article specifically talks about the variable types in Javascript. The reason I dedicated an...

Variable Types in Javascript

Variable Declaration in Javascript for Beginners

Oct 4, 20205 min read 359 views

Variables in JavaScript are like containers that hold reusable data. These data containers need to be declared with some specific keywords in...

Variable Declaration in Javascript for Beginners

Why Should You Learn JavaScript?

Oct 4, 20203 min read 559 views

JavaScript is a loosely typed, interpreted scripting language. It is one of the most powerful and popular programming languages in the world. Most of...

Why Should You Learn JavaScript?