This commit is contained in:
Karan
2021-11-25 19:59:54 +05:30
committed by GitHub
parent ce005570a6
commit cdefc41988
-7
View File
@@ -1,7 +0,0 @@
const myArr = [1,4,5,6];
const myArr1 = myArr.map(function(ele){
return ele * 2;
});
console.log(myArr1);
const myArr2 = myArr.map((ele)=> ele*2);
console.log(myArr2);