1. JSX랑 JavaScript는 섞어 쓰지 않는 게 좋다. 이 경우 자바스크립트로 작성한 것은 class의 메서드로 만들면 보기도 좋다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 render() { return ( {this.state.first} x {this.state.second} = ? { e.preventDefault(); if (parseInt(value) === this.state.first * this.state.second) { this.setState({ result: '정답', first: Math.ceil(Math.random() * 9), second: Math.ceil(Math.random..