curly-chopstick
the curliest chopstick in the cupboard
View the Project on GitHub
tangalice/curly-chopstick
Home
TPT
Tech Talk Activities
Create Task
AP Test
Final/a></td> </tr> </table>
## Create Task [Create Task Description](https://github.com/samayass/flask_portfolio/wiki/Create-Task-Plan:-Samaya-&-Alice)
[Create Task Written Response](https://drive.google.com/file/d/1bJ8RP_Us56WtYtoJhd88aYHvmctHKcqj/view?usp=sharing)
[Create Task Repl](https://replit.com/@Samayas/Create-Task#main.py)
[1 min Video](https://drive.google.com/file/d/1ahMxvOaYdAlusTsWBGaeIIOmS4trzdoY/view?usp=sharing) Snippets: ``` if (!gameOver && row == height) { gameOver = true; document.getElementById("answer").innerText = word; } ``` ``` if ("KeyA" <= e.code && e.code <= "KeyZ") { if (col < width) { let currTile = document.getElementById(row.toString() + '-' + col.toString()); if (currTile.innerText == "") { currTile.innerText = e.code[3]; col += 1; } } } ```