JSFiddle - React, Tailwind, and code Playground
HTML
<p><b>Values: </b></p>
<form>
<input type="text" name="name" value="John">
<input type="text" name="password" value="password">
<input type="text" name="url" value="http://ejohn.org/">
</form>
JavaScript
/*$( "p" )
.append( $( "input" ).each(function() {
return $( this ).val();
})
.get()
.join( ", " ) );*/