Skip to content
Open
Changes from all commits
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
6 changes: 6 additions & 0 deletions session1/index_extra.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
// ex. reverseString('hello') === 'olleh'

function reverseString(str) {

// CONTRIBUTED SOLUTION
// By Mateus Kuritza
// return str.split("").reverse().join("");
// =================

// CONTRIBUTED SOLUTION
// let arr = [...str];
// let newArr = arr.map((_, i, arr) => {
Expand Down