How to convert array with different elements type include date to local string in JavaScript

1 Answer

0 votes
const array = [1, 'w', new Date('21 Dec 1997 14:12:00 UTC'), "javascript"];

const localeString = array.toLocaleString('en', { timeZone: 'UTC' });

console.log(localeString);

  
    
    
/*
run:
    
"1,w,12/21/1997, 2:12:00 PM,javascript"
    
*/

 



answered Dec 3, 2020 by avibootz
...