About me Plan for the year 2017 In no specific order: Chinese The goal here is to be able to read Chinese web pages and maybe newspapers. This year being able to read simple children's books seems like a reasonable
Challenge A short as possible FizzBuzz JS oneliner After a few iterations this is what I came up with: Array.apply(null, {length: 100}).map((_, x) => {x++; return x % 15 ? x % 5 ? x % 3 ? x : 'Fizz' : 'Buzz' : 'FizzBuzz'}) Initialize