12345678910111213141516171819202122232425262728293031 |
- i18nextXt('taa');
- a + 'b';
- var emojis = "🌼🌺🌸hello world";
- switch (a) {
- case '':
- var a = 'b';
- break;
- default:
- break;
- }
- export const b = 'hello_string';
- const c = 'foo';
- const d = call('Ffo');
- var e = { foo: 'bar' };
- class Form extends Component {
- property = 'Something';
- }
- <>
- <div>foo</div>
- <div>フー</div>
- <DIV foo="bar" />
- <img src="./image.png" alt="some-image" />
- <button aria-label="Close" type="button" />
- <div title="pink flower">🌸</div>
- </>
|