Skip to content

Instantly share code, notes, and snippets.

@davidsharp
Created September 10, 2020 19:00
Show Gist options
  • Select an option

  • Save davidsharp/e13465119aae6538dccd56a0617e5d56 to your computer and use it in GitHub Desktop.

Select an option

Save davidsharp/e13465119aae6538dccd56a0617e5d56 to your computer and use it in GitHub Desktop.
Widen an array of (row) arrays
function widenArray(arr,width) {
return arr.map(row=>row.length>=width?row:[...row,...(Array(width-row.length).fill(''))])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment