Cheat sheet on JavaScript interview questions
(Call Stack, Hoisting, Scope and Single Thread)

Search for a command to run...
Articles tagged with #iwritecode
(Call Stack, Hoisting, Scope and Single Thread)

Types of Array methods: 1. shift() This method removes the first element from an array let movies = ["ironman", "superman", "spiderman"]; movies.shift(); console.log(movies); output: [ 'superman', 'spiderman' ] ironman has been removed from the sta...

SETUP Set a name that is identifiable for credit when review version history git config --global user.name “[firstnamelastname]” Set an email address that will be associated with each history marker git config --global user.email “[valid email]” ...

Markdown is a lightweight markup language for creating formatted text using a plain-text editor. Markdown is a way to style text on the web. It is mostly used in GitHub as readme.md file to explain our project. Markdown file has an extension of .md ...

Basic selectors 1. Universal Selector: The universal selector (*) selects all HTML elements on the page. Example- The CSS rule below will affect every HTML element on the page: /* asterisk symbol means apply to all */ *{ margin: 0; padding: ...

The CSS position property defines the position of an element in a document. This property works with the left, right, top, bottom and z-index properties to determine the final position of an element on a page. We have 5 Syntax in CSS position propert...
