Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

জাভাস্ক্রিপ্ট ইএস ৬(ES6): রেস্ট(Rest) প্যারামিটার #56

Open
utterances-bot opened this issue Jan 20, 2021 · 2 comments

Comments

@utterances-bot
Copy link

জাভাস্ক্রিপ্ট ইএস ৬(ES6): রেস্ট(Rest) প্যারামিটার | হাতেকলমে জাভাস্ক্রিপ্ট

একটা শর্টে লেখার অংশবিশেষ

https://js.zonayed.me/es6/post-8

Copy link

const argumentsMeth6 = (...anyName) => {
anyName.map(oneArgs => console.log('Argument Passed: ' + oneArgs))
}
argumentsMeth6('Bangladesh', 'India', 'Sri Lanka')

I can't understand this code.
It seems oneArgs is a perameter . So why we don't use
anyName.map((oneArgs) => console.log(Argument Passed: + oneArgs))
like this...

Copy link

@abdullaalmaruf this rest param is to pass in a function and you don't need to declare an Array to pass in the function. In this way, you can just define your string (s) as param in function so far what I can understand

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants