Skip to content

Instantly share code, notes, and snippets.

View FrontendWebBlog's full-sized avatar

FrontendWebBlog

View GitHub Profile
@FrontendWebBlog
FrontendWebBlog / ES-2023–2025-features.md
Last active October 30, 2025 06:50
5 полезных фич ES2023–2025

1.

Array.prototype.findLast()

  const nums = [1, 2, 3, 4, 5];

  const cb = (el) => el % 2 === 0;

  console.log(nums.findLast(cb));  // 4