Javascript: behind the scenesI used to wonder how a programming language works behind the scenes and in particular javascript. After going through lot of resources i found most of them do not explain this part which i feel is very crucial to be a great developer. A big shout out...Mar 1, 2024·4 min read
Javscript: expressions and operatorsAn expression is a javascript phrase that can be evaluated to produce a value.a constant embedded literally in your program is a simple kind of expression. A variable is also a simple expression that evaluates to whatever the value was assigned to it...Feb 28, 2024·6 min read
Javascript: statementsIf javascript expressions are phrases that are evaluated to produce a value , statements are like sentences that are executed to make something happen. One way to make something happen is by using conditionals which control the order of execution. Ma...Feb 28, 2024·5 min read
Javascript: types, values and variablesjavascript types can be divided into primitive and object types. primitive types include numbers, strings, boolean, symbols, null and undefined. Anything which is not the above is the object type. Numbers javascript represents numbers using a 64-bit ...Feb 28, 2024·10 min read
Javascript: lexical structureThe lexical structure of a programming language is a set of elementary rules that specifies how you write programs like how variable names look, the delimiting characters for comments, keywords etc. Text Javascript is a case-sensitive language that m...Feb 28, 2024·3 min read