DEV Community

Berra
Berra

Posted on

1

Javascript Arrays

Remember how to spell lentgh lenght length. It is very good when working with arrays in javascript.

You could also create a small helper function like this:

function size(arr) {
  return array.length;
}
Enter fullscreen mode Exit fullscreen mode

Size is much easier to spell than length. This will also work for strings.

Would like to know the size of an object? You could use our nice function to do this:

const obj = {
  keyA: "A",
  keyB: "B",
}

size(Object.keys(obj)); // 2
Enter fullscreen mode Exit fullscreen mode

That is sweet.

Hope you find this useful or funny. Until next time.

Top comments (0)

nextjs tutorial video

Youtube Tutorial Series 📺

So you built a Next.js app, but you need a clear view of the entire operation flow to be able to identify performance bottlenecks before you launch. But how do you get started? Get the essentials on tracing for Next.js from @nikolovlazar in this video series 👀

Watch the Youtube series

👋 Kindness is contagious

Explore a trove of insights in this engaging article, celebrated within our welcoming DEV Community. Developers from every background are invited to join and enhance our shared wisdom.

A genuine "thank you" can truly uplift someone’s day. Feel free to express your gratitude in the comments below!

On DEV, our collective exchange of knowledge lightens the road ahead and strengthens our community bonds. Found something valuable here? A small thank you to the author can make a big difference.

Okay