Snippet 1
person = {
'name':'john smith'
'age':41
};
console.log(person);
//this will return [object Object]
//use
console.log(JSON.stringify(person));
//instead
Similar Snippets
Creating Java Main Method Code Example – java
Find Duplicates In Arraylist Java Code Example – java
Java Creat A Folder Code Example – java
Copyright © Code Fetcher 2020