전체 글

박정수가 공부한 자료를 남기기 위한 블로그
dev/기타

visual Studio region 접기 닫기 단축키

정의 부분만 보이기 : ctrl M + ctrl O 전체 다 보이게 하기 : ctrl M + ctrl L

영어공부

JavaScript Data Types

JavaScript Data Types JavaScript variables can hold many data types: numbers, strings, objects and more: 자바스크립트 데이터 타입 자바스크립트 변수는 많은 종류의 데이터 타입을 저장한다. 숫자, 스트링, 객체 그 이상 The Concept of Data Types In programming, data types is an important concept. To be able to operate on variables, it is important to know something about the type. Without data types, a computer cannot safely solve this: 데이터 타입의 개..

영어공부

JavaScript Variables

JavaScript variables are containers for storing data values. In this example, x, y, and z, are variables: 자바스크립트 변수는 값을 저장하는 위한 컨테이너이다. 예를들면 x,y,z는 변수이다. From the example above, you can expect: x stores the value 5 y stores the value 6 z stores the value 11 위의 예제로 부터 아래의 내용을 예상할수 있다. x는 5를 저장하고, y는 6을 저장하고, z는 11을 저장한다. Much Like Algebra In this example, price1, price2, and total, are variables:..

jeongsu
Park_jeong_su