ES7

metoda includes() do string i array – zwraca true kiedy ciag znaków lub tablica zawiera wskazany element


"Hell-oo".includes("o"); //true

exponential operator ** potęga do wskazanej wartości


const square = (x) => x**2;
const cube = (y) => y**3;

Hope this helps and happy coding :)

Zobacz jeszcze

PWA - Progressive Web Apps

jest to zestaw dodatków których nie możesz dodać do każdej aplikacji collection of technologies and techniques you progressively enhance your existing web pages to feel and work more...

ES8

string padding - funkcja dla ciągów tekstowych (string) .padStart() i .padEnd() - dodaje przestrzeń przed lub po ciągu znaków. "MasterOfPuppets".padStart(20, '+'); daje...