Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
function first() { alert('Привет'); } function second() { alert('Пока'); } function third() { alert('Да'); }
var flist = [first, second, third]; flist[Math.round(Math.random()*flist.length)]();