You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/js/Array/Write a JavaScript function...

7 lines
216 B
JavaScript

function array_filled(n, val)
{
return Array.apply(null, Array(n)).map(String.prototype.valueOf,val);
}
console.log(array_filled(3, 'default value'));
console.log(array_filled(4, 'password'));