avatar

Javascript 30

  • Published on
    [이전글 보기](/2019/12/20/tensorflowjs-01-get-started/) ## 설치 ### 브라우저 설치 Tensorflow.js를 설치하는 방법은 두 가지가 있습니다. - Script tag를 이용하는법 - npm을 이용해서 설치하고, Parcel, Webpack, Rollup 같은 빌드 툴을 사용 뉴비 웹 개발자거나, 위 에서...
  • Published on
    ## 요구사항 한 엘리먼트안에서 특정한 키워드를 다른 색싱으로 바꿔서 출력하는 것이다. 아래 예시를 살펴보자 ### before ```jsx <Text>카카오 페이지 카카오 스토리 카카오톡</Text> ``` ### after ```jsx <Text> <Text color="blue">카카오 </Text>페이지 <Text color="bl...
  • Published on
    ## 브라우저 히스토리 브라우저의 히스토리는 `window.history`안에 있다. `History {length: 3, scrollRestoration: "auto", state: null}` `length`만 가져올 수 있을 뿐, 실제 내부에 리스트는 가져올 수가 없는데 이는 보안상의 문제 때문이다. `window.history.back()` ...
  • Published on
    [목차](/2019/08/13/reactjs-interview-questions/) # table of contents ```toc tight: true, from-heading: 2 to-heading: 3 ``` ## React Router ### What is React Router? React Router는 리액트 최상단에 있는 강력한 라우...
  • Published on
    [목차](/2019/08/13/reactjs-interview-questions/) ```toc tight: true, from-heading: 2 to-heading: 3 ``` ## Core React ### What is React 리액트는 오픈소스 프론트엔드 자바스크립트 라이브러리로, 특히 싱글 페이지 애플리케이션의 사용자 인터페이스 구축을...