udarakalpana / javascript_katas

This is katas for learn javascript fundamental concept.
0 stars 0 forks source link

Kata 1: Squaring Numbers #1

Closed udarakalpana closed 4 months ago

udarakalpana commented 4 months ago

Given an array of numbers, return a new array where each number is multiply.

// Given array const numbers = [1, 5, 10, 100, 45, 36]

//Output should want to this when console.log new returning numbers [2, 10, 20, 200, 95, 72 ]