Skip to content

Commit db3e2c2

Browse files
problem 51 initialization completed
1 parent c3f6fad commit db3e2c2

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

problem51/problem.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
## Practice Problem 51 `Access Object values`
3+
4+
```
5+
const student = {
6+
name: 'Fredie',
7+
age: 26,
8+
}
9+
```
10+
11+
### Task: Console the value of `age`
12+
13+
problem provider : https://drive.google.com/file/d/1XcvIBe_rJlr6GY2rTnHlbIluTABXNhp7/view

problem51/problem51.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
/*
3+
4+
const student = {
5+
name: 'Fredie',
6+
age: 26,
7+
}
8+
9+
10+
Task: Console the value of 'age'
11+
12+
problem provider : https://drive.google.com/file/d/1XcvIBe_rJlr6GY2rTnHlbIluTABXNhp7/view
13+
14+
*/
15+

0 commit comments

Comments
 (0)