https://jestjs.io/ Jest By ensuring your tests have unique global state, Jest can reliably run tests in parallel. To make things quick, Jest runs previously failed tests first and re-organizes runs based on how long test files take. jestjs.io C:\Users\knew\Documents\20211104\jest-test>npm init This utility will walk you through creating a package.json file. It only covers the most common items, ..
2022
C:\Users\???>node -v v16.8.0 C:\Users\???>npm -v 8.1.2 C:\Users\???>npx create-react-app --version 4.0.3
1. 가상 돔 2. 단방향 데이터 바인딩 3. JSX : 자바스크립트와 HTML을 동시에 사용하며, HTML에 자바스크립트 변수들을 바로 사용할 수 있는 일종의 템플릿 언어 const App = () => { const hellp = 'Hello World'; return {hello}{/div>; } 4. 선언형 프로그래밍 // 명령형 프로그래밍 const double = (arr) => { let result = []; for (let i =0; i { result arr.map((elem) => elem *2); } JSX..