Tag: json

  • How to parse JSON Data in Javascript?

    Data is shared and distributed in a variety of formats online in the current digital era. JSON (JavaScript Object Notation) is one of the most widely used formats for data exchange. JSON is a compact and readable data format that makes it simple to transfer data between servers and web clients. For developers wishing to […]

  • Bing Search API with NodeJS

    Bing provides a search API by which you can use the power of bing search in your own application. The base URL for the search API is: https://api.cognitive.microsoft.com/bing/v7.0/search The code to integrate the API using Express and Node JS is: The API Subscription Key can be created at the website: https://azure.microsoft.com/en-in/services/cognitive-services/bing-web-search-api/ If you want more […]

  • JavaScript – Stringify Object to formatted JSON

    There are numerous cases where we need to convert our objects to JSON using JSON.stringify and there are also several cases where we need to have the output JSON to be formatted for easy readability. For the above-mentioned purpose JSON.stringify(…) function has support to format the output if required. It takes special arguments for this purpose. JSON.stringify Signature [cc lang=”javascript”] JSON.stringify(value[, replacer[, space]]) [/cc] Here […]