Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 = '' + '' + ' '; var result2 = convert.xml2json(xml, {compact: false, spaces: 4}); console.log(result2.title); // output should be 'happy'.Happy ' + 'Work ' + 'Play ' + '
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started