udarakalpana / javascript_katas

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

Katas 1: Get multiple array value #4

Closed udarakalpana closed 2 months ago

udarakalpana commented 2 months ago

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

// 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 ]

TharinduUdara commented 2 months ago

@udarakalpana i started

SKNC-KARUNANAYAKA commented 1 month ago

@udarakalpana I start Katas 1(Get multiple array value)