JSFiddle - React, Tailwind, and code Playground
JavaScript
function first(){
alert("first");
}
function second(par){
alert("second"+par);
}
var array_of_functions = [
first,
second
];
array_of_functions[0]();
array_of_functions[1]("hi");