#Github Mastering Markdown and Emoji Cheat Sheet
- Master Markdown skills through this guide : https://guides.github.com/features/mastering-markdown/
- Github Supported Emoji Cheat Sheet : https://www.webpagefx.com/tools/emoji-cheat-sheet/
| /*TO HIDE THE SCROLLBAR*/ | |
| ::-webkit-scrollbar { | |
| display: none !important; | |
| } |
| //8 Methods to Iterate through Array | |
| //forEach (Do Operation for Each Item in the Array) | |
| [1,2,3].forEach(function(item,index) { | |
| console.log('item:',item,'index:',index); | |
| }); | |
| //map (Translate/Map all Elements in an Array to Another Set of Values.) | |
| const oneArray = [1,2,3]; | |
| const doubledArray = oneArray.map(function(item) { |
#Github Mastering Markdown and Emoji Cheat Sheet