Habr
β
How to become an author
My feed
All streams
Search
Write a publication
Settings
Login
Pull to refresh
0
0
Влад
@Reseto
Game developer
Follow
Send message
Profile
Articles
Posts
News
Comments
1
More
Dropdown
Bookmarks
Followers
Following
Copy RSS link
О каждодневном совершенствовании JavaScript-программиста
Reseto
Jun 4 2020 at 11:36
const arr = [1,2,3]
const newArray = arr.map(item => item * 2)
Я так делаю копию
const newArray = arr.slice()
Information
Rating
Does not participate
Location
Львов, Львовская обл., Украина
Date of birth
April 22 1988
Registered
August 18 2017
Activity
September 2 2020 at 10:20
const newArray = arr.map(item => item * 2)
Я так делаю копию
const newArray = arr.slice()