* 메서드 체이닝(Method Chaining)
- 메서드를 연속으로 사용
<!-- method_chaning.html --> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>method_chaning</title> <script type="text/javascript"> var output = 'http://gangzzang.tistory.com/'; output = output.toUpperCase().substring(0, 17); alert(output); </script> </head> <body> </body> </html>
'Web > JavaScript' 카테고리의 다른 글
자바스크립트(JavaScript) 문서 객체 모델(DOM : Document Object Model) (0) | 2013.11.19 |
---|---|
자바스크립트(JavaScript) 브라우저 객체 모델(Browser Object Model) (0) | 2013.11.19 |
자바스크립트(JavaScript) 생성자 함수(constructor) (4) | 2013.11.18 |
자바스크립트(JavaScript) 객체 (2) | 2013.11.15 |
자바스크립트(JavaScript) 내장 함수 (0) | 2013.11.14 |