ZMZainab Mustufainmarkdown-cheatsheet.hashnode.dev·Sep 10, 2022 · 3 min readJavaScript Interview Question Cheatsheet1. Scope: Global Scope: The global scope includes any variable that is not contained within a function or block (a pair of curly braces). Global scope variables can be accessed from anywhere in the program. Local Scope: Variables declared inside ...01N
ZMZainab Mustufainmarkdown-cheatsheet.hashnode.dev·Aug 27, 2022 · 2 min readArrays CheatsheetArray.map() Returns a new array with the results of calling a function for every element. Array.filter() Returns a new array with all elements that passed the requirement of the provided function. Array.reduce() Reduce the array to a single value. ...00
ZMZainab Mustufainmarkdown-cheatsheet.hashnode.dev·Aug 15, 2022 · 1 min readGit Basicgit config: git init: git clone: git remote: git add: git status: git tag: git branch: git push: git stash: git stash list:00
ZMZainab Mustufainmarkdown-cheatsheet.hashnode.dev·Aug 15, 2022 · 1 min readCheatSheet Of MarkdownHeading: #H1 ##H2 ###H3 ####H4 Bold: bold or bold Italic: italicized text or italicized text Blockquote: blockquote (hello everyone) Ordered list: 1. one 2. two ...00