Code Monkey home page Code Monkey logo

array-extensions's Issues

any 함수의 배열의 요소가 객체일 경우 비교.

좋은 라이브러리 잘 사용하고 있습니다.

아래와 같이 배열의 요소가 객체인 경우, any 함수를 사용 할 수 없습니다.

ex)-----------------------------------
function person(name,age)
{
this.name = name;
this.age = age;
};

var arr = [];
arr.push(new person('호진',31);
arr.push(new person('준일',31);

arr.any(function(item){return item.name==='호진'}); // return false;

last() incorrect "null reference" errors

When the last element is one of: 0, "", undefined or null, array.last() throws a "Null Reference" error.

An error could be thrown if the array is empty, but in all other cases just that last value should be returned no matter what value it is.

Steps to reproduce:

require("js-array-extensions");

console.log([1, 2, 3].last()); // returns 3
//console.log([1, 2, 3, 0].last()); // Error: Null Reference
//console.log([1, 2, 3, ''].last()); // Error: Null Reference
//console.log([1, 2, 3, undefined].last()); // Error: Null Reference
//console.log([1, 2, 3, null].last()); // Error: Null Reference

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.