💡 สวัสดีจ้าเพื่อน ๆ วันนี้แอดจะพาเพื่อน ๆ มารู้จักกับ Operator จาก JavaScript ที่จะช่วยให้เพื่อน ๆ เข้าถึงข้อมูลใน Object ได้ง่ายมากขึ้น !!
.
🌈 และเจ้านี่คือ...Optional chaining (?.) นั่นเองจ้า จะเป็นยังไง มีรายละเอียด และวิธีการใช้งานยังไง ไปติดตามกันได้ในโพสต์นี้เลยจ้า ~~
.
✨ Optional chaining (?.) - เป็นตัวดำเนินการที่ทำให้เราสามารถอ่านค่าใน Object ที่ซ้อนกันหลาย ๆ ชั้นได้ง่ายมากขึ้น เขียนง่าย และทำให้โค้ดสั้นลงนั่นเอง
.
จริง ๆ แล้วมันก็เหมือนเราใช้ เครื่องหมายจุด (.) นั่นแหละ แต่ความพิเศษของมันก็คือถ้าในกรณีไม่มีค่าใน Object หรือ Function มันจะ Return เป็น Undefined แทน Error
.
👨💻 Syntax
.
obj.val?.prop
obj.val?.[expr]
obj.arr?.[index]
obj.func?.(args)
.
📑 วิธีการใช้งาน
.
❤️ ตัวอย่าง 1 : ใช้เข้าถึงข้อมูลใน Object
let customer = {
name: "Mew",
details: {
age: 19,
location: "Ladprao",
city: "bangkok"
}
};
let customerCity = customer.details?.city;
console.log(customerCity);
//output => bangkok
.
❤️ ตัวอย่าง 2 : ใช้กับ Nullish Coalescing
let customer = {
name: "Mew",
details: {
age: 19,
location: "Ladprao",
city: "bangkok"
}
};
const customerName = customer?.name ?? "Unknown customer name";
console.log(customerName); //output => Mew
.
❤️ ตัวอย่าง 3 : ใช้กับ Array
const obj1 = {
arr1:[45,25,14,7,1],
obj2: {
arr2:[15,112,9,10,11]
}
}
console.log(obj1?.obj2?.arr2[1]); // output => 112
console.log(obj1?.arr1[5]); // output => undefined
.
📑 Source : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Optional_chaining
.
borntoDev - 🦖 สร้างการเรียนรู้ที่ดีสำหรับสายไอทีในทุกวัน
#javascript #optionalchaining #BorntoDev
「nullish object」的推薦目錄:
- 關於nullish object 在 BorntoDev Facebook 的最讚貼文
- 關於nullish object 在 Is there a way to utilize the nullish coalescing operator ... 的評價
- 關於nullish object 在 JavaScript Optional Chaining Operator (?.) 的評價
- 關於nullish object 在 nullish-coalescing-object.js - gists · GitHub 的評價
- 關於nullish object 在 Using the JS nullish coalescing operator ... - githubmemory 的評價
- 關於nullish object 在 Optional Chaining and Nullish coalescing explained - YouTube 的評價
- 關於nullish object 在 Flattening data using Object.Assign and dealing with null ... 的評價
nullish object 在 JavaScript Optional Chaining Operator (?.) 的推薦與評價
that simplifies the way to access values through connected objects. ... the profile will take the defaultProfile due to the nullish coalescing operator: ... ... <看更多>
nullish object 在 nullish-coalescing-object.js - gists · GitHub 的推薦與評價
Instantly share code, notes, and snippets. @ArcherHuang · ArcherHuang/nullish-coalescing-object.js. ... <看更多>
nullish object 在 Is there a way to utilize the nullish coalescing operator ... 的推薦與評價
... <看更多>
相關內容