Question from the Javascript - Fundamentals test

Create a table of notes with the elements of the table "notes" multiplied by 1.1 in order

Easy

What does the following code do?

    const notes = [10, 7, 9]; 
   const harmonisedNotes = notes.map(x => x*1.1); 
Author: KahinaStatus: Published(Update)Question passed 457 times
Edit
1
Community EvaluationsNo one has reviewed this question yet, be the first!