IT45 JS Versions (JavaScript Versions) 1995년 Brendan Eich가 만들었고 1997년 ECMA의 표준이 되었음. 공식 명칭 : ECMAScript Vers : ES1, ES2, … , ES6, ECMAScript 2016, …, ECMAScript 2021 (2016년 부터는 년도로 넘버링) Ver Official Name Description ES1 ECMAScript 1 (1997) 초판 ES2 ECMAScript 2 (1998) Editorial changes ES3 ECMAScript 3 (1999) 정규식 추가 try/catch 추가 switch 추가 do-while 추가 ES4 ECMAScript 4 Never released ES5 ECMAScript 5 (2009) Read More "strict mode" 추가 JSO.. 2022. 12. 13. JSX class 는 잘 안쓰지만 형태는 알아둘 것. ( 요즘은 함수 컴포넌트 씀 ) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 'use strict'; class LikeButton extends React.Component { constructor(props) { super(props); this.state = {liked: false}; } render() { if (this.state.liked) { return 'You liked this.'; } return ( this.setState({liked: true})}> Like ); } } Colored by Color Scripter cs function 1 2 3 4 5 6 7 8 9 .. 2022. 12. 9. SQLite Install 예전에 영어 공부하면서 만들어놓은 SQLite 설치 가이드를 발견해서 업로드 해본다 ! Download https://www.sqlite.org/download.html sqlite-tools-win32-x86-3380500.zip sqlite-dll-win64-x64-3380500.zip GUI Tool https://sqlitestudio.pl/ How to Use? create database click the green button. and define where you want to save the database file. click the save button, its file name is automatically on name. (except in the name already exist.. 2022. 12. 9. LocalDB 인스턴스를 시작하는 동안 오류가 발생했습니다. SQL Server 프로세스를 시작하지 못했습니다. 컴퓨터에 SQL Server를 설치하려하니 설치 실패 오류가 떴다.이것저것 검색 하다가 블로그 글 읽고 D드라이브에 어찌어찌 설치는 했다. 그렇다구 mssqllocalDB가 켜지진 않는...ㅠ windows 11 SSMS 설치 오류와 해결 방법 최근 팀 프로젝트를 시작하기 위해 SSMS를 설치하는 과정중, 설치에 계속 실패하는 오류가 발생했다. 데이터베이스 엔진 복구 핸들을 대기 하지 못했습니다. 설치 환경 운영체제 : windows 11 설치 sumin-yang.tistory.com VS 2022 ASP.NET Core로 React.js 프로젝트를 만들다가 만난 오류. 도대체 왜 일어나는건지 모르겠다. MssqllocalDB에 접근이 안되는 듯 하여 인터넷에서 긁어모아 본 sqllocaldb stop .. 2022. 12. 8. 이전 1 ··· 3 4 5 6 7 8 9 ··· 12 다음