Medium JavaScript Challenges with Edabit

preview_player
Показать описание
In this tutorial, we’ll complete some more Edabit challenges which are ‘medium JavaScript challenges’ so they're a bit more complicated than previous challenges.

Medium JavaScript Challenges with Edabit
-------------------------------------------------
00:00 Introduction
00:19 Getting setup
00:51 Matches property
05:45 Likes / Dislikes
13:01 String slice-athon

— Follow Me —
— Thanks! — Channel Handle @codebubb
Рекомендации по теме
Комментарии
Автор

ex 02:
function likeOrDislike (arr){

|| arr.length===0){

return `Nothing`

}

return arr[arr.length-1]

}

dace
Автор

Hi, for the first challenge why using the bracket notation and not the dot notation to access property of an object ?

yellowdegr