Basic Arrow Syntax

Function Expression vs Arrow Function Expression Concise Arrow Function Expression Before After Function Types Comparison

Read More

Template Literals

Template literals are very similar to string literals, but they use backticks (`) instead of single quotes (’) or double […]

Read More

Variable Declaration

Old var pi = 3.14159; New const pi = 3.14159; let radius = 5; Const Short for constant – constant […]

Read More