The
at()
method takes an integer value and returns the item at that index, allowing for positive and negative integers. Negative integers count back from the last item in the array.
The
at()
method takes an integer value and returns a newString
consisting of the single UTF-16 code unit located at the specified offset. This method allows for positive and negative integers. Negative integers count back from the last string character.>
🐊Putout plugin adds ability to apply array.at()
.
npm i @putout/plugin-apply-at
{
"rules": {
"apply-at": "on"
}
}
const latest = (a) => a[a.length - 1];
const latest = (a) => a.at(-1);
MIT