Question: Node.js - xml-js (npm) Hello everyone, I was wondering if you can help how to display a specific converted json data. I copied and pasted
Node.js - xml-js (npm)
Hello everyone,
I was wondering if you can help how to display a specific converted json data. I copied and pasted the code below. I'm using the xml-js (npm).
var convert = require('xml-js'); var xml = '' + '' + ' Happy ' + ' Work ' + ' Play ' + ' '; var result2 = convert.xml2json(xml, {compact: false, spaces: 4}); console.log(result2.title); // output should be 'happy'. I'm trying to display the value 'happy' under 'title' but it comes out as undefined. What am I doing wrong? Any help would be greately appreciated!!!
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
