diff --git a/README.md b/README.md index 8373420..c3fa360 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,2 @@ -# Skill-It -Skill It session - -## School of Accelerated Learning - -[SOAL Website](https://www.schoolofacceleratedlearning.com/) - -Think you can pass the Firewall test - [Firewall](https://firewall.soal.io/firewall/signup/)? +![flow-graph](image/final.png) diff --git a/image/final.png b/image/final.png new file mode 100644 index 0000000..f3b9e5f Binary files /dev/null and b/image/final.png differ diff --git a/js/tic-tac-toe.js b/js/tic-tac-toe.js index ed4b4d7..5cf387b 100644 --- a/js/tic-tac-toe.js +++ b/js/tic-tac-toe.js @@ -1,4 +1,4 @@ -// TIC TAC TOE +git // TIC TAC TOE const tic_tac_toe = { @@ -104,6 +104,8 @@ const tic_tac_toe = { }, draw() { - this.container_element.innerHTML = this.board.map((element, index) => `
${element}
`).reduce((content, current) => content + current); + this.container_element.innerHTML = this.board.map( + (element, index) => `
${element}
`) + .reduce((content, current) => content + current); }, }; \ No newline at end of file