개발하자/자바스크립트

prototype 으로 메서드 생성해서 공용으로 사용하기

i구야 2015. 2. 24. 15:58

<html>
 <body>
 <script>
 String.prototype.aaa=function(){
 return "def";
 }
 var str=new String("abc");

 document.write(str.toUpperCase()); // ABC
 document.write("<br>");
 document.write(str.aaa()); // def

 document.write("<br>");
 var str2="bbb";
 document.write(str2.aaa()); // def

 </script>
 </body>
</html>