I hereby claim:
- I am raycohen on github.
- I am raycohen (https://keybase.io/raycohen) on keybase.
- I have a public key ASCkh9JItfXqNAiGSpJIULZPhgQqrujEDRwUhEliXk2B6Qo
To claim this, I am signing this object:
| /** | |
| * This file represents a simple application where we make 10 api requests to get | |
| * 10 random words back and then append them based on the index of the word at the time the request was made | |
| * There are many things wrong with this file, but when all are fixed the application should log out the list of words (generator.result) | |
| */ | |
| var TOTAL_WORDS = 10; | |
| var resultDiv = document.getElementById('result'); | |
| console.log(resultDiv); |
I hereby claim:
To claim this, I am signing this object:
| import Controller from '@ember/controller'; | |
| export default class ApplicationController extends Controller { | |
| appName = 'Ember Twiddle'; | |
| myArray = ['zero', 'one', 'two']; | |
| myIndex = 0; | |
| myMap = {'yellow': 'lemon', 'green': 'lime'} | |
| } |