Javascript - Functions Part 1 Solutions

preview_player
Показать описание
Welcome to the solutions videos of my Javascript Functions Part 1 video. I tried to solve these challenges relatively quickly while also providing a few tidbits on how engineers solve problems while writing programs. I hope you enjoy this video!

In this video go over how to solve 2 of the challenges on my write up.

Also, remember that this video is part of my Javascript series. We will enventually go over enough javascript for you to become dangerous!
Рекомендации по теме
Комментарии
Автор

Create a function powerBy with optional parameter that powers the base number by 2 by default.
Correct solution: function (base, exp = 2) {....}

JurajPecháč