Skip to content

Instantly share code, notes, and snippets.

View kimalajoy's full-sized avatar
:octocat:

Kimala kimalajoy

:octocat:
View GitHub Profile
function toRoman(num) {
let arr = Array.from(String(num), Number);
let roman = []
//base case
if (roman.length === arr.length) {
return roman
}
console.log(arr)

React Router Prework

This gist contains a short assignment I'd like everyone to complete before our formal lesson. The prework involves reading some of the React Router documentation, and will allow us to keep the lesson more hands on.

Instructions

  1. Fork this gist
  2. On your own copy, go through the listed readings and answer associated questions
  3. Comment a link to your forked copy on the original gist

Questions / Readings