Modern Javascript Basics Part - I
Type Coercion

Search for a command to run...
Articles tagged with #frontend-development
Type Coercion

This is the second part of a series of related javascript posts. If you haven't had a chance to look at the first, click this link and learn about objects in modern javascript. Working with javascript Arrays; 1. Array definition ; The line of cod...

Intro to objects; Some of the most powerful data structures to work within javascript are arrays and objects. Both of these items have a lot in common and also can interact with each other. They both are used to store collections of data in javascrip...

SCSS makes writing CSS code much faster and simpler. One of the ways it helps achieve this is by utilizing of code nesting feature. In normal CSS, each item contains its separate code, which makes it much more complicated since this may result in a ...

Article content; In this article, there are a lot of modern javascript concepts related to functions which include and not limited to; The use of rest parameters in functions, Use of the spread operator when calling a function Use of default paramet...

Having learned why it's a bad idea to use var in javascript from this extensive article, this article focuses on the two alternatives introduced from es6 and later javascript versions namely let and const. Let and const are the best alternatives to...
