1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-16 16:36:56 +02:00
LeetCode/js/convert-object-to-json-string.js
Matej Focko 2351dfd0ee
chore: unwrap one layer
Signed-off-by: Matej Focko <mfocko@redhat.com>
2023-12-12 14:36:00 +01:00

25 lines
668 B
JavaScript

/**
* @param {any} object
* @return {string}
*/
var jsonStringify = function(object) {
switch (typeof object) {
case 'boolean':
case 'number':
return `${object}`;
case 'string':
return `"${object}"`;
case 'object':
if (Array.isArray(object)) {
return `[${object.map(jsonStringify).join(',')}]`;
}
if (object) {
let nested = Object.keys(object).map(key => `"${key}":${jsonStringify(object[key])}`);
return `{${nested.join(',')}}`;
}
return 'null';
default:
return '';
}
};