본문 바로가기

자바스크립트11

[JS][자바스크립트] 심볼 1. 심볼 튜토리얼 - https://ko.javascript.info/symbol 심볼형 ko.javascript.info 유일한 식별자(unique identifier)를 만들고 싶을 때 사용되는 ES6 자료형이다. 리액트에서 가상돔을 관리할때도 쓰고 있는 것으로 여러모로 유용하다. 기본적으로 심볼은 동일한 ID로 선언해도 다른 식별키가 되어서 해당 키를 저장해둔 변수를 통해서만 접근 가능하며, 특정 메소드들을 제외하고는 자바스크립트 내부에서 심볼을 확인 할 수 없기에 슈퍼셋이나 전역에 영향을 주지 않는 방식으로 기능을 추가하거나, 식별 할 수 있다는게 가장 큰 장점으로 보인다. 물론 전역 심볼로 굳이 따로 자료형에 저장하지 않는 방식도 유용해보인다. # 사용법 1. 심볼은 Symbol(key)로 선.. 2021. 6. 27.
[Leetcode]49. Group Anagrams 문제 풀이 # 문제 원문 Given an array of strings strs, group the anagrams together. You can return the answer in any order. An Anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once. Example 1: Input: strs = ["eat","tea","tan","ate","nat","bat"] Output: [["bat"],["nat","tan"],["ate","eat","tea"]] Example 2: Input: strs .. 2021. 6. 26.
자바스크립트 관련 링크 모음 1. 모던 JavaScript 튜토리얼 모던 JavaScript 튜토리얼 ko.javascript.info 2. 웹 프로그래밍 튜토리얼 | PoiemaWeb 웹 프로그래밍 튜토리얼 | PoiemaWeb Front-end Development Tutorial poiemaweb.com 3. MDN Web Docs (mozilla.org) MDN Web Docs The MDN Web Docs site provides information about Open Web technologies including HTML, CSS, and APIs for both Web sites and progressive web apps. developer.mozilla.org 2021. 6. 25.