1+ {
2+ "contents" : [{
3+ "title" : " জাভাস্ক্রিপ্ট console অবজেক্ট এর ব্যবহার সমূহ" ,
4+ "items" : [{
5+ "id" : " 001" ,
6+ "definition" : " কোন কিছুর আউটপুট ব্রাউজার কনসোলে দেখতে চাইলে" ,
7+ "code" : " console.log()"
8+ }, {
9+ "id" : " 002" ,
10+ "definition" : " কোন মান টেস্ট করার জন্য" ,
11+ "code" : " console.assert()"
12+ }, {
13+ "id" : " 003" ,
14+ "definition" : " ব্রাউজার কনসোল ক্লিয়ার করতে" ,
15+ "code" : " console.clear()"
16+ }, {
17+ "id" : " 004" ,
18+ "definition" : " কনসোল আউটপুট count করতে" ,
19+ "code" : " console.count()"
20+ }, {
21+ "id" : " 005" ,
22+ "definition" : " কনসোল আউটপুট count কে reset করতে" ,
23+ "code" : " console.countReset()"
24+ }, {
25+ "id" : " 006" ,
26+ "definition" : " অবজেক্ট এর প্রোপার্টি গুলো দেখতে" ,
27+ "code" : " console.dir(object)"
28+ }, {
29+ "id" : " 006" ,
30+ "definition" : " কনসোল কোন element এর XML/HTML/Object ভিউ পেতে" ,
31+ "code" : " console.dirxml()"
32+ }, {
33+ "id" : " 007" ,
34+ "definition" : " কাস্টম error দেখানোর জন্য" ,
35+ "code" : " console.error()"
36+ }, {
37+ "id" : " 008" ,
38+ "definition" : " Group of element একসাথে দেখতে" ,
39+ "code" : " console.group()"
40+ }, {
41+ "id" : " 009" ,
42+ "definition" : " কনসোল ইনফো জানতে" ,
43+ "code" : " console.info()"
44+ }, {
45+ "id" : " 010" ,
46+ "definition" : " কনসোল আউটপুট table আকারে দেখতে" ,
47+ "code" : " console.table()"
48+ }, {
49+ "id" : " 011" ,
50+ "definition" : " কোন অপারেশন কি পরিমান সময় নিচ্ছে তা দেখতে" ,
51+ "code" : " console.time()"
52+ }, {
53+ "id" : " 012" ,
54+ "definition" : " কোন অপারেশনের এক্স্যাক্ট সময় জানতে" ,
55+ "code" : " console.timeEnd()"
56+ }, {
57+ "id" : " 013" ,
58+ "definition" : " console.time() ও console.timeEnd এর পুরো লগ দেখতে" ,
59+ "code" : " console.timeLog()"
60+ }, {
61+ "id" : " 014" ,
62+ "definition" : " কোন ফাংশন কার্যক্রম trace করার জন্য" ,
63+ "code" : " console.trace()"
64+ }, {
65+ "id" : " 015" ,
66+ "definition" : " ওয়ার্নিং মেসেজ দেয়ার জন্য" ,
67+ "code" : " console.warn()"
68+ }]
69+ }]
70+ }
0 commit comments