雖然這篇Coalescing鄉民發文沒有被收入到精華區:在Coalescing這個話題中,我們另外找到其它相關的精選爆讚文章
在 coalescing產品中有4篇Facebook貼文,粉絲數超過10萬的網紅BorntoDev,也在其Facebook貼文中提到, 💡 สวัสดีจ้าเพื่อน ๆ วันนี้แอดจะพาเพื่อน ๆ มารู้จักกับ Operator จาก JavaScript ที่จะช่วยให้เพื่อน ๆ เข้าถึงข้อมูลใน Object ได้ง่ายมากขึ้น !! . 🌈 และเจ้...
同時也有1部Youtube影片,追蹤數超過78萬的網紅あさぎーにょ,也在其Youtube影片中提到,朝ご飯に思いつきで 家にあるものだけでおにぎりを作りました。 本当シンプルというかそれだけかいって話ですが楽しく見てもらえると有り難いです。 みんなはポケモンGOしてる?! モンスターボールの作り方はいたってシンプル ケチャップご飯にしろご飯を合体させて海苔をつけるだけで キャラ弁みたいなモンスター...
coalescing 在 Crisp of Life Instagram 的最佳貼文
2020-05-01 04:52:59
Viva Victoria is an unique restaurant snugged in a colonial heritage building that coalescing traits from a cafe, brasserie and bistro into a single e...
coalescing 在 NATHELIE TAY Instagram 的最佳解答
2020-05-09 17:19:56
Listen to the sounds of my thoughts and words, coalescing in the silence 🌿☕️...
-
coalescing 在 あさぎーにょ Youtube 的最佳解答
2016-08-02 19:29:42朝ご飯に思いつきで
家にあるものだけでおにぎりを作りました。
本当シンプルというかそれだけかいって話ですが楽しく見てもらえると有り難いです。
みんなはポケモンGOしてる?!
モンスターボールの作り方はいたってシンプル
ケチャップご飯にしろご飯を合体させて海苔をつけるだけで
キャラ弁みたいなモンスターボールおにぎりの完成。
A whim to breakfast
We made a rice ball in the only thing in the house.
But is a story saying how much I mean really simple is appreciated and get a look at fun.
Everyone has Pokemon GO? !
How to make the monster ball is very simple
Just put the seaweed coalescing rice white in ketchup rice
Completion of like a monster ball rice ball kyaraben.
아침 식사에 착상으로
집에있는 것만으로 주먹밥을 만들었습니다.
진짜 간단 이랄까 그만큼하거나해서 이야기이지만 즐겁게 봐 주시면 감사하겠습니다.
모두 포켓몬 GO하고있어? !
몬스터 볼 만드는 방법은 매우 간단
케첩 밥에 흰 쌀을 합체시켜 김을 클릭만으로
캐릭터 변 같은 몬스터 볼 주먹밥의 완성.
毎日投稿!また見てね!!
あさぎーにょチャンネルのTwitter🌼
http://twitter.com/asagi_ch
あさぎーにょのインスタ🌷
http://instagram.com/asagi_singer
あさぎーにょのラインスタンプ💐
https://store.line.me/stickershop/product/1183977/ja
coalescing 在 BorntoDev Facebook 的最讚貼文
💡 สวัสดีจ้าเพื่อน ๆ วันนี้แอดจะพาเพื่อน ๆ มารู้จักกับ 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
coalescing 在 BorntoDev Facebook 的最佳貼文
💡 เพื่อน ๆ มือใหม่หัดเขียน JavaScript หลาย ๆ คนอาจจะเคยเห็นเครื่องหมาย ?? และ || ในโปรแกรมแล้วไม่รู้ว่ามันคืออะไร และทำงานยังไง วันนี้เรามาไขข้อสงสัยกันเถอะ !! กับสรุปสั้น ๆ วิธีการใช้งาน Nullish Coalescing Operator
.
มันคืออะไร และใช้งานยังไง หากพร้อมแล้วไปอ่านกันเลยจ้าาาาา~~
.
🌟 Nullish Coalescing Operator
.
Nullish Coalescing (??)
เป็นตัวดำเนินการตรรกะที่จะ Return ค่าทางขวามือเมื่อค่าทางซ้ายเป็น Null หรือ Undefined
.
👨💻 Syntax
leftExpr ?? rightExpr
.
📑 ตัวอย่าง
const name1 = null ?? 'Oreo';
console.log(name1);
//output => Oreo
.
OR (||) - เป็นตัวดำเนินการตรรกะ จะ Return ค่าทางขวามือหากทางซ้ายมือเป็นเท็จ (0, ' ', NaN, null, undefined)
.
📑 ตัวอย่าง
let tu = null;
let text = tu || 'stupid!';
console.log(text); // output => stupid!
.
สามารถใช้ร่วมกับ OR (||) และ AND (&&) ได้แต่ต้องใช้วงเล็บ () เพื่อจัดลำดับความสำคัญของตัวดำเนินการด้วยนะ !!
.
📑 ตัวอย่าง OR (||)
let y = (false || true) ?? "foo"
console.log(y) // output => true
.
📑 ตัวอย่าง AND (&&)
let x = (false && true) ?? "foo"
console.log(x) //output => false
.
💥 Source : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing_operator
.
borntoDev - 🦖 สร้างการเรียนรู้ที่ดีสำหรับสายไอทีในทุกวัน
coalescing 在 Crisp of Life Facebook 的最佳解答
Viva Victoria is an unique restaurant snugged in a colonial heritage building that coalescing traits from a cafe, brasserie and bistro into a single entity. It features bar counters designed for patrons to manoeuvre around glasses for a face time talk. Comfy couches are in place for a laid back evening, and the colourful mandala flower tablecloth ornamenting the tables renders a fine lunch & dinner experience. The premium casual restaurant also boasts an elegant ambiance for ...
See More