Skip to content

Commit 1b77017

Browse files
authored
Create Giving-Default-Value.js
1 parent 6f227eb commit 1b77017

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

Giving-Default-Value.js

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
// Giving Default Value
3+
4+
const mhs = {
5+
nama: 'Ken Arok',
6+
umur: 35
7+
}
8+
9+
const { nama, umur, email = '[email protected]' } = mhs;
10+
console.log(email); // output: kenArok@default.com
11+
12+
const mhsa = {
13+
nama_a: 'Pari Kesit',
14+
umur_a: 27,
15+
email_a: '[email protected]'
16+
}
17+
18+
const { nama_a, umur_a, email_a = '[email protected]'} = mhsa; // trying to change default value of email_a, but failed as per below console.log
19+
20+
console.log(email_a); // pariKesit@contoh.com
21+
22+

0 commit comments

Comments
 (0)