Expected output: Array [8, 6, 7, 9]

PHOTO EMBED

Wed Sep 25 2024 09:41:10 GMT+0000 (Coordinated Universal Time)

Saved by @linezito

const materials = ['Hydrogen', 'Helium', 'Lithium', 'Beryllium'];

console.log(materials.map((material) => material.length));
// Expected output: Array [8, 6, 7, 9]
content_copyCOPY