본문 바로가기

Virtual DOM 1

web/javascript by 낼스 2019. 7. 12.
# Virtual DOM 1 ##### [source : https://jsfiddle.net/softm/18xv32hy/ ](https://jsfiddle.net/softm/18xv32hy/) ```javascript /** @jsx h */ function h(type, props, ...children) { return { type, props, children }; } const a = (
  • item 1
  • item 2
); console.log(a); ```

'web > javascript' 카테고리의 다른 글

Virtual DOM 3  (0) 2019.07.12
Virtual DOM 2  (0) 2019.07.12
Javascript Prototype to json  (0) 2019.07.12
Javascript Promise(프로미스는)  (0) 2019.07.12
node javascript async parallel  (0) 2019.07.12

댓글