Skip to content

Instantly share code, notes, and snippets.

@pyr0hu
Created June 24, 2025 15:40
Show Gist options
  • Save pyr0hu/a210a7337aa10bf12240e9fe156e3655 to your computer and use it in GitHub Desktop.
Save pyr0hu/a210a7337aa10bf12240e9fe156e3655 to your computer and use it in GitHub Desktop.
const a = JSON.parse('["szulo", "gyerek"]');
console.log(a);
console.log(Array.isArray(a))
b = JSON.parse('{"szulo": 5, "gyerek": 12}');
console.log(a);
console.log(Array.isArray(b))
c = JSON.parse('{"0": 15, "1": 42}');
console.log(c);
console.log(Array.isArray(c))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment