관리 메뉴

Silver Library (Archived)

Constructor, super class, literal, static 본문

CS Library/JavaScript - Data Structure

Constructor, super class, literal, static

Chesed Kim 2021. 7. 17. 16:13
반응형

Constructor

1. https://aomee0880.tistory.com/96 

2. https://webclub.tistory.com/380

 

Class - super

1. https://www.w3schools.com/jsref/jsref_class_super.asp

2. https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Operators/super

 

super - JavaScript | MDN

super 키워드는 부모 오브젝트의 함수를 호출할 때 사용됩니다.

developer.mozilla.org

Object - literal

1. https://kosaf04pyh.tistory.com/21

 

[javascript] 객체 리터럴 ?

자바스크립트에서는 원시타입(숫자, 불린값, null과 undefined)를 제외한 모든 값이 객체입니다. 객체를 생성하는 방법에는 2가지가 있는데 객체리터럴과 생성자로 객체를 만들 수 있습니다. 객체리

kosaf04pyh.tistory.com

Static class, method, function

1. https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Classes/static

Static methods are often utility functions, such as functions to create or clone objects, whereas static properties are useful for caches, fixed-configuration, or any other data you don't need to be replicated across instances.

2. https://kr.mathworks.com/help/matlab/matlab_oop/static-methods.html