JSFiddle - React, Tailwind, and code Playground

by WK_of_Angmar

JavaScript

function talk() {alert("hello");};

function test() {
function talk() {alert("goodbye");};
talk();
};

test();