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

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,900 questions

51,831 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 135 views
1 answer 182 views
1 answer 184 views
1 answer 240 views
1 answer 156 views
1 answer 114 views
1 answer 150 views
...