DEV Community

Discussion on: What is your favourite ES6 feature?

Collapse
 
admirnisic profile image
admirnisic

Do not know what is my favorite one but one cool feature which is on top of my list is default value for function parameters.

function sayHello(name = 'World') {
    return `Hello ${name}!`;
}
Enter fullscreen mode Exit fullscreen mode