Skip to content

Commit c02eebf

Browse files
committed
New: Implemented FCM cloud messaing.
1 parent 886638f commit c02eebf

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

basic/function.js

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@ console.log(add);
1111
// ([num, num2] = [30, 70]) => console.log(num + num2)
1212
// ({ a, b } = { a: 10, b: 20 }) => a + b;
1313

14-
let sum = (a, b) => a + b;
15-
console.log(sum(20, 80));
14+
// let sum = (a, b) => a + b;
15+
// console.log(sum(20, 80));
1616

17-
about_me = () => {
18-
const name = `My Name is: Bozlur Rosid Sagor`;
19-
let age = 25;
20-
let contact = {
21-
'address': 'Sector 11, Road#10, House#06, Dhaka-Bangladesh',
22-
'phone': '+8801773474709',
23-
'email': 'brshagor.cse@gmail.com'
24-
}
25-
let profession = `Full-stack software engineer`;
17+
// about_me = () => {
18+
// const name = `My Name is: Bozlur Rosid Sagor`;
19+
// let age = 25;
20+
// let contact = {
21+
// 'address': 'Sector 11, Road#10, House#06, Dhaka-Bangladesh',
22+
// 'phone': '+8801773474709',
23+
// 'email': 'brshagor.cse@gmail.com'
24+
// }
25+
// let profession = `Full-stack software engineer`;
2626

27-
let show_all = `Name: ${name}\nAge: ${age}\nContact Infor: ${contact}\nProfession: ${profession}`
28-
return show_all;
29-
}
27+
// let show_all = `Name: ${name}\nAge: ${age}\nContact Infor: ${contact}\nProfession: ${profession}`
28+
// return show_all;
29+
// }
3030

31-
const about = about_me();
32-
console.log(about);
31+
// const about = about_me();
32+
// console.log(about);

0 commit comments

Comments
 (0)