Snippets ¯\_(ツ)_/¯
const
Block-scoped. Cannot be re-assigned. Not immutable.
const test = 'test';
let
Block-scoped. Can be re-assigned.
let i = 0;
More to Come...
So you want nice css scrollbar...
Lorem ipsum dolor sit amet, mea ne viderer veritus menandri, id scaevola gloriatur instructior sit.
:root{
::-webkit-scrollbar{height:10px;width:10px}::-webkit-scrollbar-track{background:#efefef;border-radius:6px}::-webkit-scrollbar-thumb{background:#d5d5d5;border-radius:6px}::-webkit-scrollbar-thumb:hover{background:#c4c4c4}
}