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

Выборки по предикатам из задания 3 при помощи наследования #12

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

Zhigalov
Copy link

No description provided.

Инициализация полей пока только через set
У меня не получилось применить apply(), только call() но есть ощущение
что делается именно то что нужно.
var Collection = function (items) {
"use strict";

this.items = items.slice(0);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Такое клонирование будет работать только с примитивами.

var a = {};
var b = [a];
var c = b.slice(0);

c[0] === a; // true

@azproduction
Copy link
Member

Все норм

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.

2 participants