
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
크롬 검사 Console 창에서 계속 떠있는 에러인데 어떻게 없앨 수 있나요?
Uncaught ReferenceError: colsole is not defined
at prac.html:20:9
작성한 코드 및 에러 메세지
<!DOCTYPE html> <html> <head> <title>자바스크립트 문법 연습하기!</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> </head> <style> .button-part { display: flex; height: 50px; } </style> <script> let age = 24 if (age > 20) { colsole.log('성인입니다') } else { console.log('청소년입니다') } </script> <body> <div class="top-part"> <h1>자바스크립트 문법 연습하기!</h1> </div> <hr/> <br> <h2>1. 함수</h2> <div class="button-part"> <button onclick="checkResult()">결과 확인하기!</button> </div> <div class="list-part"> <h2>2. 리스트</h2> <div id="q1">테스트</div> </div> <div class="dict-part"> <h2>3. 딕셔너리</h2> <div id="q2">테스트</div> </div> <div> <h2>4. 리스트 딕셔너리</h2> <div id="q3">테스트</div> </div> </body> </html>
