//firefox에서만 실행할 수 있음
var test = {
name: "puterjam",
__noSuchMethod__: function(name, args){
alert(["오류 함수 호출 [", name, "]. 인수 목록: [",args,"]"].join(""))
}
}
test.hello()
test.helloWorld(" china" ,"shenzhen");
테스트 개체에서 정의되지 않은 메서드를 실행하면 __noSuchMethod__ 메서드가 자동으로 실행되므로 이를 사용하여 내결함성 및 모니터링 작업을 수행할 수 있습니다. .