From 1daea459c3fd7056f522a25a106262e96d160e46 Mon Sep 17 00:00:00 2001 From: goferito Date: Tue, 15 Sep 2015 14:24:21 +0200 Subject: [PATCH] Better pizza example --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e8596f9..725e038 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,11 @@ Bing.web("Pizza", { top: 10, // Number of results (max 50) skip: 3, // Skip first 3 results }, function(error, res, body){ - console.log(body); + + // body has more useful information, but for this example we are just + // printing the first two results + console.log(body.d.results[0]); + console.log(body.d.results[1]); }); ```