Modern Javascript Basics - Part IV
String immutability explained
Mar 10, 20217 min read222

Search for a command to run...
Articles tagged with #javascript-modules
String immutability explained

Stop using var and get the difference between null and undefined in javascript;

Basic but crucial javascript rules you should know;

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...

In modern javascript, one can write your code without semicolons on your code and it wouldn't throw any errors. In Fact, some programmers prefer to ignore them entirely while coding specifically in javascript. For a clear understanding of the explain...
