일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 파이썬
- c#
- numpy
- hive
- Kotlin
- PySpark
- Github
- string
- SQL
- list
- Apache
- dataframe
- Mac
- Python
- Redshift
- Google Excel
- array
- Java
- math
- PANDAS
- Tkinter
- PostgreSQL
- GIT
- google apps script
- Excel
- django
- matplotlib
- Google Spreadsheet
- gas
- Today
- Total
목록Google (50)
달나라 노트
보통 class에 있는 attribute나 method는 다른 객체로 만든 채로 사용할 수 있습니다. class 자체로부터 method를 호출하거나 할 수 없습니다. class Cat { constructor(name, age, weight, color) { this.name = name; this.age = age; this.weight = weight; this.color = color; this.species = 'mammal'; } sound() { Logger.log('Moew~'); } } function myFunction(){ var my_cat = new Cat(name='Kitty', age=5, weight=4.5, color='white'); my_cat.sound(); } -- R..
Prototype method라는 것에 대해 알아봅시다. Class를 생성한 후 이 Class를 어떠한 변수에 할당해서 해당 변수를 객체(인스턴스)로 만듭니다. 이것을 인스턴스화(=객체화)라고 하죠. Class에는 여러 속성이 있을 것이고 method도 있을 것입니다. 인스턴스화 과정에서 Class에 있는 모든 정보는 객체화가 될 대상 변수로 복사되죠. class Cat { constructor(name, age, weight, color) { this.name = name; this.age = age; this.weight = weight; this.color = color; this.species = 'mammal'; } sound() { Logger.log('Moew~'); } } function ..
여러 값을 하나로 묶어서 다룰 수 있게 해주는 배열(array)을 알아봅시다. Python의 list와 매우 흡사합니다. function myFunction() { var arr_test = [1, 2, 3, 4, 5]; console.log(arr_test[1]); console.log(arr_test[2]); } -- Result 2 3 위처럼 배열은 대괄호[]를 이용해서 선언하며 indexing이 가능합니다. index는 배열의 가장 첫 번째 요소가 0이며 그 후 1씩 증가합니다. function myFunction() { var arr_test = [1, 2, 3, 4, 5]; console.log(arr_test[1]); arr_test[1] = 10; console.log(arr_test[1]..
GAS에서 문자열을 나타낼 때에는 따옴표(') 또는 쌍따옴표(")로 문자열을 감싸서 나타냅니다. function myFunction() { console.log('apple'); console.log("apple"); } 이렇게 apple이라는 문자를 표시하려면 따옴표나 쌍따옴표로 묶어서 사용합니다. 그런데 만약 줄바꿈이 있는 문자열을 표시하려고 한다면 따옴표나 쌍따옴표를 이용해도 될까요? function myFunction() { console.log(' line1 line2 line3 '); } 따옴표로 줄바꿈이 있는 텍스트를 감싸서 나타냈습니다. 위 코드는 에러를 발생시킵니다. 단순 따옴표나 쌍따옴표는 줄바꿈이 있는 문자를 담을 수 없습니다. 줄바꿈이 있는 문자를 담기 위해서는 ` (Back tic..