Click Event and Function
Sep 2, 2023 · 3 min read · What is JSX? JSX full form is JavaScript XML. Before JSX we don't write HTML and JavaScript together. But now we can write HTML and JavaScript together. Example: let ste = "JSX"; <div>{`Hello this is ${ste}`</div> <div>{10+15}</div> We can use react ...
Join discussion