Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

27. 배열 #136

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

27. 배열 #136

wants to merge 2 commits into from

Conversation

L2HYUNN
Copy link
Member

@L2HYUNN L2HYUNN commented Mar 28, 2023

27. 배열

✏️ 기억에 남는 내용

  • 자바스크립트의 모든 값은 배열의 요소가 될 수 있다.

  • 자바스크립트에 배열이라는 타입은 존재하지 않는다. 배열은 객체 타입이다.

    • 일반 객체와 배열을 구분하는 가장 명확한 차이는 "값의 순서""length 프로퍼티" 다.
  • 자바스크립트 배열은 배열이 아니다.

    • 자료구조에서 말하는 배열은 동일한 크기의 메모리 공간이 빈틈없이 연속적으로 나열된 자료구조다. (밀집 배열, dense array)
    • 자바스크립트의 배열은 요소를 위한 각각의 메모리 공간이 동일한 크기를 갖지 않을 수 있으며, 연속적으로 이어져 있지 않을 수도 있다. (희소 배열, sparse array)
    • 자바스크립트의 배열은 일반적인 배열의 동작을 흉내 낸 특수한 객체다.

📝 간단한 퀴즈

  1. 자바스크립트의 배열은 일반적인 자료구조의 배열과 다르다. 그 차이점에 대해서 간단하게 이야기 해보자.

  2. Array.prototype.push와 같은 메서드는 원본 배열을 변경 시킨다. 원본 배열을 변경시키는 것이 어떠한 문제가 있는지 이야기 해보고 push 메서드를 대체할 수 있는 방법을 작성해보자.

  3. Array.prototype의 메서드를 이용하여 스택(Stack) 혹은 큐(Queue)를 두 가지 방법(prototype, class)로 구현해보자.


🧑🏻‍💻 연관 코드

// 관련 코드를 적어주세요.

@L2HYUNN L2HYUNN requested a review from LSH-0125 as a code owner March 28, 2023 10:14
@L2HYUNN L2HYUNN self-assigned this Mar 28, 2023
@L2HYUNN L2HYUNN requested a review from Sun4-me as a code owner March 28, 2023 10:14
@L2HYUNN L2HYUNN linked an issue Mar 28, 2023 that may be closed by this pull request
@L2HYUNN L2HYUNN requested a review from BARAM1NG as a code owner March 28, 2023 10:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

27. 배열
1 participant