Szereg funkcji
const fns = [()=>{console.log("first")}, ()=>{console.log("second")}, function(){console.log("third")}]
fns[0]();
/*remember the (), the function will not execute with only fns[0]*/
Javasper