JavaScript Syntax

var x, y; // How to declare variables x = 5; y = 6; // How to assign values z = x + y; // How to compute values 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 … 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