반응형 script3 [ React ] Expected an assignment or function call and instead saw an expression 오류 해결 방법 💥 React 실행 후 발생한 에러 메시지ERROR[eslint] src/App.js Line 49:13: Expected an assignment or function call and instead saw an expression no-unused-expressionsSearch for the keywords to learn more about each error. ✅ 해결 방법'{'를 생략해 줍니다.setTodoData(prev => {[...prev, newTodo]})setTodoData(prev => [...prev, newTodo]) 2024. 7. 15. [JS] Uncaught SyntaxError: Cannot use import statement outside a module 에러 해결 방법 🚨 크롬 console 에러 메시지Uncaught SyntaxError: Cannot use import statement outside a module❓에러 발생 이유브라우저가 해당 script를 ES6 모듈로 인식하지 못해서 발생하는 문제입니다. ✅ 해결 방법브라우저가 해당 script를 ES6 모듈로 인식할 수 있게 -->수정 코드 math.jslet pi = 3.14;export { pi }; index.jsimport { pi } from "./math.js";console.log(pi); 2024. 7. 10. [JS] JavaScript 스톱 워치 (+코드) 📄 StopWatch 요구 사항Start 버튼을 누르면 시간이 증가합니다.Stop 버튼을 누르면 시간이 정지합니다.Reset 버튼을 누르면 시간이 초기화됩니다. index.html StopWatch 0:0 Start Stop Reset script.js// 각 요소 변수에 저장하기const appendTens = document.getElementById('tens');const appendSeconds = document.getElementById('seconds');const buttonStart = document.getElementById('button-start');const buttonStop = docume.. 2023. 10. 25. 이전 1 다음 반응형