Asynchronous nature of console.log()

by emilcieslar

JavaScript

Person = {
	name: 'Emil Cieslar'
};

console.log(JSON.stringify(Person));

Person.age = 26;

console.log(Person);