π€ Have you ever thought about how console.log works and how it can handle many arguments at once?
If youβve worked with JavaScript, then...
For further actions, you may consider blocking this person and/or reporting abuse
Not to mention that
arguments
is a reserved word to get all the arguments passed to a function as an iterable object (including arguments already named) without having to use the spread operator in the function's parameters list:Result:
(Notice how
arguments
contains extra arguments than explicitly specified with the nameda
,b
andc
parameters.)This is amazing! Thanks for the info, James. π
Great article! Browsers and even the simplest things in JS really are amazing. (For that matter, that we can turn sand into silicon and silicon into computers).
Keep up the good writing!
Thank you so much for your kind words!
I liked that reference to sand, silicon and computers, it greatly covers the fascinating hardware part.
No problem! You deserved some kindness for such awesome content!
Keep up the good work, and happy coding!
Didn't knew that :D
Thanks for the quick explanation.
It's my pleasure!
Thanks for reading the article.
(i'd be grateful if you shared this with your friends)
Arrays in JS have a maximum number of 2Β³Β²-2 elements regardless if they are constructed via rest operator or otherwise.
Thanks for sharing knowledge, buddy!
Thanks for sharing your expertise on this matter. Your depth of knowledge shines through in every paragraph.
Thanks, Alex!
Well, every master was once a beginner!