var functor=function(){
//test
}
functor.prop=1;
console.log(functor);
এটি কেবল ফান্টারের ফাংশন অংশটি দেখায়, কনসোলে ফান্টারের বৈশিষ্ট্যগুলি প্রদর্শন করতে পারে না।
var functor=function(){
//test
}
functor.prop=1;
console.log(functor);
এটি কেবল ফান্টারের ফাংশন অংশটি দেখায়, কনসোলে ফান্টারের বৈশিষ্ট্যগুলি প্রদর্শন করতে পারে না।
উত্তর:
ব্যবহারের console.dir()
একটি ব্রাউজ-সক্ষম বস্তুর তোমাদের পরিবর্তে মাধ্যমে ক্লিক করতে পারেন আউটপুট .toString()
সংস্করণ, এভাবে:
console.dir(functor);
নির্দিষ্ট বস্তুর জাভাস্ক্রিপ্ট উপস্থাপনা মুদ্রণ করে। লগ হওয়া বস্তুটি যদি কোনও এইচটিএমএল উপাদান হয় তবে তার ডিওএম উপস্থাপনের বৈশিষ্ট্য মুদ্রিত হয় [1]
[1] https://developers.google.com/web/tools/chrome-devtools/debug/console/console-references#dir
আপনি চেষ্টা করলে আপনি আরও ভাল ফলাফল পেতে পারেন:
console.log(JSON.stringify(functor));
আপনি চেষ্টা করলে আপনি আরও ভাল ফলাফল পেতে পারেন:
console.log(JSON.stringify(obj, null, 4));
var gandalf = {
"real name": "Gandalf",
"age (est)": 11000,
"race": "Maia",
"haveRetirementPlan": true,
"aliases": [
"Greyhame",
"Stormcrow",
"Mithrandir",
"Gandalf the Grey",
"Gandalf the White"
]
};
//to console log object, we cannot use console.log("Object gandalf: " + gandalf);
console.log("Object gandalf: ");
//this will show object gandalf ONLY in Google Chrome NOT in IE
console.log(gandalf);
//this will show object gandalf IN ALL BROWSERS!
console.log(JSON.stringify(gandalf));
//this will show object gandalf IN ALL BROWSERS! with beautiful indent
console.log(JSON.stringify(gandalf, null, 4));
এটি আমার জন্য পুরোপুরি কাজ করেন:
for(a in array)console.log(array[a])
আপনি এই ডেটা ক্লিনআপ এবং উত্তরোত্তর ব্যবহারের সন্ধান / প্রতিস্থাপনের জন্য কনসোলে তৈরি যে কোনও অ্যারেগুলি বের করতে পারেন
for (i in arr) { console.log(i); console.log(arr[i]); }
কনসোলে জিনিসগুলি সুবিধামত মুদ্রণের জন্য আমি একটি ফাংশন লিখেছিলাম।
// function for debugging stuff
function print(...x) {
console.log(JSON.stringify(x,null,4));
}
// how to call it
let obj = { a: 1, b: [2,3] };
print('hello',123,obj);
কনসোল আউটপুট হবে:
[
"hello",
123,
{
"a": 1,
"b": [
2,
3
]
}
]
আমি ট্রিটেন্ট ডি'গও উত্তরটির একটি ফাংশন করেছি।
function print(obj) {
console.log(JSON.stringify(obj, null, 4));
}
এটি কিভাবে ব্যবহার করতে
print(obj);
আপত্তি আউটপুট:
console.log(obj, null, 4)
varName
ক্রোম কনসোলে মুদ্রণ করা এবং এন্টার চাপানো একইরূপ প্রভাব দেয়console.dir(varName)
।