const x = () => {};
function fn() {}
return true;
if (a) {}
let i = 0;
for (;;) {}
class C {}
import x from '';
const { a, b } = obj;
obj?.prop
arr?.map(x => x)
[...arr]
?? ''
async await
Promise
.then() catch
throw new
`${name}`
`\n`
/^[a-z]+$/
Symbol.iterator
export { Button };
import { useState } from 'react';
export const foo = () => {};
Boolean(x)
Number(str)
arr.length
!!value ?? default
arr.map(x => x.id)
filter(Boolean)
reduce((a, b) => a + b)
try { } catch (e) {}
<div class="container">
<button onClick="{handler}">
</div>
<span> </span>
.card {
display: flex;
margin: 1rem 0;
}
@media (min-width: 768px)
useState useEffect
fetch('/api').then
.json()
querySelector addEventListener
<Component />