shortmost elegant ES6:
let times=(n,f)=>{while(n-->0)f();}
oh, That's not for creating an array, but it's still neat!
times(3,()=>print('wow'))
or Ruby style:
Object.assign(Number.prototype,{times(f){x=this;while(x-->0)f();}})
3..times(()=>print('wow'))