프로젝트/[typescript]typeChain
-
[typeChain 2] 타입스크립트 첫걸음프로젝트/[typescript]typeChain 2018. 7. 30. 16:39
Typed 언어 TS에선 어떤 종류의 변수와 데이터인지 설정해야한다.TS만의 섬세함.코드를 읽을 때, 무슨 일이 일어날 지 예상이 가능하다. index.ts//변수를 생성. js와 같다.const name = "samsara", age = 24, gender = "female"; //함수를 생성const sayHi = (name, age, gender) => { console.log(`Hello ${name}, you are ${age}, you are a ${gender}`) //'가 아닌 ₩를 사용.} //함수 실행sayHi(name,age,gender); //ts의 룰, 이 파일이 모듈이 된다는 것을 알려줌export{}; console.log를 할 때 ' 가 아닌 tap 위의 ₩를 사용해야한다. ..
-
[typeChain 1] 타입스크립트란?프로젝트/[typescript]typeChain 2018. 7. 18. 16:45
typescript로 간단한 blockChain을 만든다.typeScript란 ? superset of javaScript.자바스크립트는 엄격한 규칙이 없어서 수정해서 사용하기 쉬운 장점을 가지고있다.하지만 팀프로젝트를 한다던가, 큰 프로젝트를 한다던가 버그를 최소화하고 싶을땐 단점이 된다.타입스크립트는 자바스크립트에 없는 규칙들을 가지고있다.언어를 예측가능하게 하고, 읽기 쉽게 하여 자바스크립트를 더 잘 활용할 수 있게한다. git repo 생성 , 세팅https://github.com/samsara1019/typechaingit clone https://github.com/samsara1019/typechaingit remote add origin https://github.com/samsara101..