2022-12-26
  • kafka
  • console
  • cheatsheet
  • kafka console cheatsheet

    ```shell ##########################

    common config

    ##########################

    모든 script 에 사용되는 옵션

    –command-config \ --bootstrap-server <SERVER_LIST:server-url-1:port,server-url-2:port,...> \

    2022-10-22
  • javascript
  • html
  • javascript text innerText textContent 차이

    TL;DR

    • innerHTML : html 을 그대로 가져옴
    • innerText : 보이는 text
    • textContent : 보이든지 말든지 text 로 인식되는 내용 모두

    • HTMLElement.innerText : 사람이 읽을 수 있는 컨텐츠만 포함
    • HTMLElement.textContent : <script> 등을 포함한 모든 element 를 포함