Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,104 questions

40,777 answers

573 users

How to convert JSON string into a date in JavaScript

2 Answers

0 votes
const json = '{"name": "Tom", "bd":"1971-12-18", "active": true}';
 
const parsedJson  = JSON.parse(json);

parsedJson.bd = new Date(parsedJson.bd);
 
console.log(parsedJson.bd);

 
 
   
/*
run:
 
1971-12-18T00:00:00.000Z
 
*/

 





answered Mar 20, 2020 by avibootz
0 votes
const json = '{"name": "Tom", "bd":"1971-12-18", "active": true}';
 
const parsedJson = JSON.parse(json, (key, value) => {
	if (key == "bd") {
	  return new Date(value);
	} else {
	  return value;
	}
  });
 
  console.log(parsedJson);

 
 
   
/*
run:
 
{ name: 'Tom', bd: 1971-12-18T00:00:00.000Z, active: true }
 
*/

 





answered Mar 20, 2020 by avibootz

Related questions

1 answer 63 views
1 answer 80 views
1 answer 66 views
1 answer 81 views
1 answer 73 views
...