Skip to content

Commit 3e6f63a

Browse files
authored
Fix mistake on json.js
1 parent 144b6f0 commit 3e6f63a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

json.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ console.log(`Reza name is: ${reza["name"]}`);
1717

1818
// Test Schema
1919
const javad = {};
20-
javad["id"] = 1002;
21-
javad["name"] = "REZA";
22-
javad["salary"] = 50002;
20+
javad["id"] = 1003;
21+
javad["name"] = "JAVAD";
22+
javad["salary"] = 50003;
2323
console.log(`Javad name is: ${javad["name"]}`);
2424

2525
// Test Schema

0 commit comments

Comments
 (0)