JavaScript Syntax

JavaScript Keywords JavaScript keywords are some reserved words that can’t be used as identifier and are used to identify actions to be performed e.g., the var keyword tells the browser to declare variables in JavaScript. Here is the list of JavaScript keywords: abstract arguments await boolean break byte case catch char class const continue debugger default delete do double … Read more

CSS Types of Selectors

Just like any programming language works, the CSS code is also interpreted based on some rules.Here, the browser interprets what is called the style rules.Based on the rules, it applies the design to the corresponding elements of the webpage. The style rule can be seen as following 3 parts: Selector – This is the HTML part … Read more