티스토리 뷰
function keyword 없이 함수를 정의하는 케이스 들을 정리해 보았습니다.
1.Arrow Function
const fn = n => console.log(n)
2.Object Method
const obj = {
name: 'Half',
greet() { console.log(`${name} 안녕하세요`) } // function greet() {...} 축약 표현
}
3.Class Method
class Person {
constructor(name) {
this.name = name;
}
greet() {
console.log(`hi ${this.name}`)
}
}
참고
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Method_definitions
'개발' 카테고리의 다른 글
[Js] Object Property에 대해 알아보자 (0) | 2022.11.06 |
---|---|
[JS] Null인 경우 값 설정 연산, Nullish coalescing operator (??) (0) | 2022.10.30 |
[JS] ES modules 와 Destructuring Assign(분해구조 할당) (2) | 2022.08.31 |
[Js] Proxy 객체로 Data Binding 구현하기 (0) | 2022.08.30 |
Naming 규칙 명칭 간단 정리 ('_' , '-', 'MyApp', 'myApp') (0) | 2022.08.25 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 스파르타 코딩클럽
- rest api 단건 다건
- 외래키 삭제
- 1종 적성검사
- rest api 조회 생성 수정 삭제
- 1종 적성검사 국가건강검진
- rest api crud
- vue 전역 컴포넌트 설정
- 1종 적성검사 과태료
- unplugin-auto-import
- 강서 운전면허 시험장
- mariadb 외래키 조회
- oracle 19c 설치
- Oracle Database 19c install
- express crud
- 티스토리챌린지
- Oracle Database 19C 설치
- postgresql trigger
- epel/x86_64
- postgresql 트리거
- 외래키 생성
- postgresql 외래키
- postgresql on update current_timestamp
- 외래키 인덱스 생성 구문 쿼리
- vue 컴포넌트 자동 import
- 오블완
- postgresql 수정시간 자동 갱신
- 1종 적성검사 신체검사
- component auto import
- epel repo
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함