일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 28 | 29 | 30 |
- 시나공
- 정보처리기사
- 튜토리얼
- oracle
- 변수
- C
- 인터페이스
- node.js
- CPS
- Java
- Filter
- Python
- JavaScript
- Spring
- w3schools
- 데이터타입
- 연산자
- 절차적 프로그래밍
- IO
- 참고
- jquery
- web
- 개요
- SEQUENCE
- SVG
- xss
- HTML
- 요구사항확인
- Git
- format
- Today
- Total
목록분류 전체보기 (30)
맛집탐방
let 과 const는 블록 스코프사용 const는 선언할 때 값을 입력해야하고 입력한 값은 변경불가 let은 자유롭게 사용가능 const a=0; //a=1;(x)다른 값 할당 불가(상수로 사용) let b=0; b=1;//(O) //const c;(x)
https://sweetalert.js.org/
www.jqueryscript.net/ Free jQuery Plugins and Tutorials - jQuery Script www.jqueryscript.net api.jquery.com/category/ jquerymobile.com/ jQuery Mobile Developer Links Seriously cross-platform with HTML5 jQuery Mobile framework takes the "write less, do more" mantra to the next level: Instead of writing unique applications for each mobile device or OS, the jQuery mobile framework allows you to des..
대분류 중분류 연산자 결합규칙 우선순위 단항 연산자 단항 연산자 ! ~ ++ -- sizeof ← 높음 ↑ ↓ 낮음 이항 연산자 산술 연산자 * / % → + - 시프트 연산자 관계 연산자 == != 비트 연산자 & ^ | 논리 연산자 && || 삼항 연산자 조건 연산자 ? : → 대입 연산자 대입 연산자 = += -= *= /= %= = ← 순서 연산자 순서 연산자 , →
비트연산자는 비트별(0,1)로 연산하여 결과를 얻는 연산자 연산자 의미 비고 & and 모든 비트가 1일 때만 1 ^ xor 모든 비트가 같으면 0, 아니면 1 | or 모든 비트 중 한 비트라도 1이면 1 ~ not 각 비트의 부정, 0=>1, 1=>0 R Shift 비트를 오른쪽으로 이동 AND OR XOR 00 0 0 0 01 0 1 1 10 0 1 1 11 1 1 0
ES6추가기능