jQuery 2.2 و 1.12 منتشر شدند
نویسنده: وحید نصیری
تاریخ: ۱۳۹۴/۱۰/۱۹ ۱۱:۳۳
آدرس: www.dntips.ir
| مطالب | ۳۶۹۴ |
| نویسندگان | ۲۷۶ |
| گروههای مطالب | ۱۰۲۴ |
| نقشههای راه | ۱۱۹ |
| دورهها | ۱۴ |
| اشتراکها | ۱۷۹۱۴ |
Symbol support
We’ve added support for the Symbol type added in ES6/ES2015. Essentially, this means that jQuery objects can be iterated with for-of where supported.
for (element of $elements) {
console.log(element);
}