<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<button onclick="fun()">Кнопка</button>
</body>
</html>
<script>
const mas=[
function firstOne () {console.log('Я был вызван')},
8,
[]
]
const fun=() =>mas.filter((item)=>typeof(item)==='function').forEach((item)=>item())
// или
// const fun=() =>mas.forEach((item)=>{if(typeof(item)==='function') item()})
</script>