Toggle navigation
Toggle navigation
This project
Loading...
Sign in
박찬수
/
enjoy_soccer
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
박찬수
2022-06-06 22:43:22 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3333702a480b1d34e4ed57f8bf259febe0c5fcb7
3333702a
1 parent
f433b3f0
JSON parsing commit
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
jsonparsing.js
jsonparsing.js
0 → 100644
View file @
3333702
let
sampleJson
=
'{"id":"2018102191", "name":"Park"}'
;
let
jJson
=
JSON
.
parse
(
sampleJson
);
console
.
log
(
jJson
.
id
);
console
.
log
(
jJson
.
name
);
\ No newline at end of file
Please
register
or
login
to post a comment