Menu

gitpiper

initializeArrayWithValues javascript Code Snippet in 2024

arrayintermediate

Last Updated: 6 April 2024

Initializes and fills an array with the specified values.

  • Use Array.from() to create an array of the desired length, Array.prototype.fill() to fill it with the desired values.
  • Omit the last argument, val, to use a default value of 0.
const initializeArrayWithValues = (n, val = 0) => Array.from({ length: n }).fill(val);
initializeArrayWithValues(5, 2); // [2, 2, 2, 2, 2]

javascript snippet similar to initializeArrayWithValues For You in April 2024

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️

© 2024 GitPiper. All rights reserved

Rackpiper Technology Inc

Company

About UsBlogContact

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️