From 5b7db8b4679e32df0ddbe252f37d846b11238a1a Mon Sep 17 00:00:00 2001 From: Hanu Prateek Kunduru Date: Tue, 12 Jul 2016 21:39:39 -0700 Subject: [PATCH] Generate output for Object Literal Example (#25) * Correcting and changing output to existing style * Apply uniform formatting across code examples * Generate output for Object Literal example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7b1339c..1470e0f 100644 --- a/README.md +++ b/README.md @@ -209,8 +209,8 @@ function getCar(make, model, value) { } let car = getCar('Kia', 'Sorento', 40000); - -// output: { +console.log(car); +// { // make: 'Kia', // model:'Sorento', // value: 40000,