This commit is contained in:
goferito 2015-11-06 20:43:39 +01:00
parent ec8ac07ffc
commit 065181cf95

View file

@ -111,7 +111,7 @@ Accepted filter values:
#### Related Search: #### Related Search:
```js ```js
Bing.relatedSearch('berlin', {market: 'en-US'}, function (err, res, body) { Bing.relatedSearch('berlin', {market: 'en-US'}, function (err, res, body) {
var suggestions = body.d.results.map(function(r){ return r.Title}); var suggestions = body.d.results.map(function(r){ return r.Title; });
console.log(suggestions.join('\n')); console.log(suggestions.join('\n'));
}); });
``` ```