JSFiddle - React, Tailwind, and code Playground

by cjhaley

HTML

<p>
<text>banana for scale</text>
<input type="text" name="age input" id="age_input"/>
</p>
<a href="#" id="my_button"></a>

JavaScript

function some_value(some_input) {
 var some_value = 10 + some_input;
 return some_value; 
}

var the_result_of_my_function = some_value(10);
console.log(the_result_of_my_function);

$("my_button").html("let's check if you're lying!")

$("#my_button").click(function() {
 var their_age = $("#age_input");
 $()
})