9 lines
156 B
Plaintext
Executable File
9 lines
156 B
Plaintext
Executable File
---
|
|
const visible = true;
|
|
const name = "Legend Sabbir"
|
|
---
|
|
{visible && <p>Show me!</p>}
|
|
|
|
{visible ? <p>Show me!</p> : <p>Else show me!</p>}
|
|
|
|
<h1>{name}</h1> |