JavaScript Interview Questions | #coding #webdevlopement #javascript

preview_player
Показать описание
JavaScript interview questions
Рекомендации по теме
Комментарии
Автор

a[0] = 25, modifies the first element of the array that both a and b reference. So, the first element changes for both a and b.

Output:[25, 20, 30] [25, 20, 30]

archanabehera