Skip to content
Advertisement

How can i limit array size in type script?

JavaScript

I have a few cases where I want to store objects like user password history in an Array of objects to ensure he has not used the password in the last 5 times for example. My question is can I specify an array of objects with a size of 5 and then just push new passwords to array and any object in the array above size set would be discarded ? Or do I have to do this my self where I count the objects in my Array and if it is = max size I pop the oldest one before I push the new object to array ? Based on the research I did typescript or javascript does not have a fixed array size, I can specify a array of 3 5 objects but will need to assign all 5 and even so the push would make it 6 objects as there is no limit. So what would be the best approach to handle this ?

I included some basic concept i cam up with

Advertisement

Answer

When i need a functionality and there happens to be no such a functionality, the first thing that i think is “what am i missing?”.

In this particular case all you need to do is to take the last passarrayLength many items from your arrPassword array and reassign it to the arrPassword array like;

JavaScript

like

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement