Skip to content
This repository was archived by the owner on Oct 26, 2020. It is now read-only.

Week 3 #96

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update 1-fix-functions.js
  • Loading branch information
Osman-Hajr authored Jul 6, 2020
commit 75dabe3670204fb70ceb8137295448b1742ee6b3
2 changes: 1 addition & 1 deletion week-2/2-mandatory/1-fix-functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function first5() {
function get3rdIndex(arr) {
let index = 3;
let element = arr[index];

console.log(element);
return element;
}

Expand Down