Code Monkey home page Code Monkey logo

negative-array's Introduction

negative-array Build Status

Negative array index support array[-1] using ES2015 Proxy

JavaScript doesn't natively support the use of a negative index to get items backwards from the end, but with ES2015 Proxy it's possible. Take a look at the source to see how simple it is to implement and read this short article about it.

Install

$ npm install negative-array

Usage

const negativeArray = require('negative-array');

// Adds negative array index support to any given array
const unicorn = negativeArray(['๐Ÿด', '๐ŸŽ‚', '๐ŸŒˆ']);

// Get the last item by using a negative index
console.log(unicorn[-1]);
//=> '๐ŸŒˆ'

// OMG, YES!

Related

  • on-change - Watch an object or array for changes (Uses Proxy too)
  • known - Allow only access to known object properties (Uses Proxy too)

License

MIT ยฉ Sindre Sorhus

negative-array's People

Contributors

sindresorhus avatar davidbruant avatar bendingbender avatar dy avatar passy avatar

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.