Get the test.php page contents, which has been returned in json format (<?php echo json_encode( array( "name"=>"John","time"=>"2pm" ) ); ?>), and add it to the page.
$.get( "test.php", function( data ) {
$( "body" )
.append( "Name: " + data.name ) // John
.append( "Time: " + data.time ); // 2pm
}, "json" );
var a = (v => {console.log(v); return v})(10)
var a = (v => v)(10)
var a = (v => {console.log(v); return v})(v => {console.log(v); return v})(10)
var a = (v => v)(v => v)(10)