Home > Enterprise >  Output of a part of data from a json array
Output of a part of data from a json array

Time:11-29

I'm working on a project that uses React redux typescript. The json file has

"data_start": "2022-09-02"

Is it possible to output it in this format ?

(2022, 09, 02)

I'm just learning programming so I don't know how to do it

CodePudding user response:

To get the desired output you could do the following:

`(${data_start.replaceAll('-', ', ')})`
  • Related