일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프론트엔드
- CSS
- Animation
- SWIFT
- ipad
- 풀스택
- html5
- 백엔드
- 비전공자
- iOS 개발자
- 자바스크립트
- effect
- iPhone
- MAC
- css3
- 애니메이션
- image
- 개발자
- keyframes
- hover
- front-end
- button
- react
- php
- IOS
- HTML
- 비전공 개발자
- jQuery
- javascript
- xcode
- Today
- Total
목록Typescript (4)
비전공자 개발일기
// array.filter(function) let numbers = [1, 2, 3, 4, 5]; let result = numbers.filter(n => n % 2 ===0) console.log(result) // [2, 4] function f1() { return "Hello World!" } function f2(str: string) { return str } // f2(1234) error f2("I'm IRONMAN") document.title = "Typescript Basic" interface Friend { name: string; favoriteColor?: string; } function add(friend: Friend) { let name = friend.name; ..
// break let goal = 3; let result = ""; for(let i = 0 ; i < 100; i++) { if(i === goal) { break; } result +="IRONMAN \n"; } console.log(result); // continue // 1부터 100까지 정수 중 7의 배수를 제외한 수 들의 합계 let sum = 0; for(let i = 1 ; i
// 숫자 데이터 형식: number 키워드로 숫자 데이터 지정 후 정수 또는 실수 저장 namespace NumberNote { // [1] 숫자 형식의 변수 선언 및 초기화 let age : number = 21; // 정수 const PI : number = 3.1415922714; // 실수 // [2] 문자열을 다시 대입하려고 하면 에러 발생 // age = 'abc'; // [3] 사용 console.log(`나이 : ${age}`) console.log(`PI : ${PI}`) } // 숫자 구분자 const rich =9_999_999_999_999; console.log(rich) // 9999999999999 // 문자 데이터 형식: string namespace StringKeywor..
// Syntax console.log("출력할 내용") // Whitespace(공백) : 프로그래밍 언어에서는 무시됨 console.log("공백은 무시") console.log("타입스크립트"); console. log( "TypeScript" ) ; console .log( "타입스크립트") ; // 특수문자: escape sequence console.log(`\" 나는 큰 따옴표`) console.log(`\' 나는 작은 따옴표`) // Variable let num1; namespace VariableDesc { num1 = 1234; } console.log(num1); // any 타입: 모든 값 let j: any; j = "안녕"; // number: 숫자 let k: number; ..