我已經創建了自定義對象,並且想要添加一個方法。我想大寫我的價值觀。但它給了我[對象對象]。任何想法如何完成它。 fiddle在javascript中使用自定義對象中的原型
function checkObj (name,title,salary){
this.name= name;
this.title= title;
this.salary= salary;
}
var woo=new checkObj("rajora","this is a test",2000);
checkObj.prototype.inc=function(){
for(i=0;i<this.length;i++){
this[i]= this[i].toUpperCase();
}
};
woo.inc();
console.log(woo)
你從'console.log(woo)'中看到了什麼? 'woo'這是你的對象 –
checkObj {name =「RAJORA」,title =「THIS IS A TEST」,salary = 2000,more ...} – Carlos
然後'console.log(JSON.stringify(woo))'(in你的情況) –