“[Objek] Node output JS” Kode Jawaban

[Objek] Node output JS

JScopyconsole.log(JSON.stringify(obj, null, 2))
Noob Learner

[Objek] Node output JS


var request = require('request');
request('http://ip-api.com/json', function (error, response, body) {
  if (!error && response.statusCode == 200) {
    console.log(response.body);    // Prints the JSON object
    var object = JSON.parse(body);
    console.log(object['country']) // Prints the country value from the JSON object
  }
});

Yucky Yacare

Jawaban yang mirip dengan “[Objek] Node output JS”

Pertanyaan yang mirip dengan “[Objek] Node output JS”

Lebih banyak jawaban terkait untuk “[Objek] Node output JS” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya