اعد الكتابة باستخدام arrow functions
استبدل Function Expressions ب arrow functions في الكود التالي:
function ask(question, yes, no) {
if (confirm(question)) yes();
else no();
}
ask(
"Do you agree?",
function () {
alert("You agreed.");
},
function () {
alert("You canceled the execution.");
}
);
function ask(question, yes, no) {
if (confirm(question)) yes()
else no();
}
ask(
"Do you agree?",
() => alert("You agreed."),
() => alert("You canceled the execution.")
);
تبدو أقصر. أليس كذلك ؟