JSFiddle - React, Tailwind, and code Playground

by bvotcode

JavaScript

var parser = require('node-html-parser');

var html = '<img src="http://static2.ccn.com/ccs/2013/02/CC_1935770_challenge_accepted_pack_x3_indivisible.jpg" />'

var result = parser.parse(html).querySelector('img').getAttribute('src')
console.log(result)