Jump to content
  • 0

list() в JavaScript


youmay
 Share

Question

6 answers to this question

Recommended Posts

  • 0

Нет. Надо реализовывать самому.

UPD: Хз насколько криво реализовал:


Array.prototype.list = function() {
for (var i = 0; i < arguments.length; i++) {
if (arguments[i] && this[i]) {
window[arguments[i]] = this[i];
}
}
}

var info = ['cofee', 'brown', 'caffeine'];

info.list('drink', 'color', 'power');

alert(drink + ' is ' + color + ' and ' + power + ' makes it special');

UPD2: И, кстати, это не функция, а конструкция языка (так написано на php.net). И, кстати, какая-то бесполезная...

Link to comment
Share on other sites

  • 0

А для чего она?

функция absolutePosition() возвращает массив координат, как их присвоить переменным x,y,z? В PHP через list() очень удобно делалось, а в JavaScript - не знаю как.

Нет. Надо реализовывать самому.

OK, буду делать.

И, кстати, это не функция, а конструкция языка (так написано на php.net). И, кстати, какая-то бесполезная...

Знаю что конструкция языка, поэтому слово функция в кавычки и поставил. А насчет бесполезности - кому как, я ею постоянно пользуюсь.

Link to comment
Share on other sites

  • 0

функция absolutePosition() возвращает массив координат, как их присвоить переменным x,y,z? В PHP через list() очень удобно делалось, а в JavaScript - не знаю как.

Если бы все браузеры поддерживали JS 1.7, то можно было бы написать [x, y, z] = absolutePosition();

Link to comment
Share on other sites

  • 0
функция absolutePosition() возвращает массив координат, как их присвоить переменным x,y,z? В PHP через list() очень удобно делалось, а в JavaScript - не знаю как.

А это не оно часом?


if (!Array.prototype.forEach) {
Array.prototype.forEach = function(fun /*, thisp*/) {
var len = this.length;
if (typeof fun != "function")
throw new TypeError();

var thisp = arguments[1];
for (var i = 0; i < len; i++) {
if (i in this)
fun.call(thisp, this[i], i, this);
}
};
}

function printBr(element, index, array) {
document.write("<br />[" + index + "] is " + element );
}

[12, 5, 8, 130, 44].forEach(printBr);

Link to comment
Share on other sites

  • 0

Если бы все браузеры поддерживали JS 1.7, то можно было бы написать [x, y, z] = absolutePosition();

Ух ты, вот это здорово!

А это не оно часом?


if (!Array.prototype.forEach) {
Array.prototype.forEach = function(fun /*, thisp*/) {
var len = this.length;
if (typeof fun != "function")
throw new TypeError();

var thisp = arguments[1];
for (var i = 0; i < len; i++) {
if (i in this)
fun.call(thisp, this[i], i, this);
}
};
}

function printBr(element, index, array) {
document.write("<br />[" + index + "] is " + element );
}

[12, 5, 8, 130, 44].forEach(printBr);

Нет, это реализация пхпшной конструкции foreach()

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy