Catch Arguments Passed in the Wrong Order When Calling a Function - Debugging - Free Code Camp

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

Thank you so much Mr. Ian function raiseToPower(b, e) {
return Math.pow(b, e);
}

let base = 2;
let exp = 3;
let power = raiseToPower(base, exp);
console.log(power);

zken
Автор

Thanks for the content - been a huge help.

sjeasley
Автор

I like the information on writing code that is easier to read. Good stuff. Thanks.

TheLegendOfMrDGaming
Автор

Love this channel so much! What is that extension that suggests JS code when you write?

jamhawk
Автор

it's a bit of a vague explanation

kyliestaraway