JSFiddle - React, Tailwind, and code Playground

by Frank Liu

JavaScript

function fun1 (){
	return {x:1}
}

function fun2  (){
	return console.log(fun1());
}

fun2();