Files
30-seconds-of-code/snippets/rightSubstrGenerator.md
Angelos Chalaris 8a6b73bd0c Update covers
2023-02-16 22:24:28 +02:00

25 lines
624 B
Markdown

---
title: Right substring generator
tags: string,generator
cover: boutique-home-office-2
author: chalarangelo
firstSeen: 2022-07-25T05:00:00-04:00
---
Generates all right substrings of a given string.
- Use `String.prototype.length` to terminate early if the string is empty.
- Use a `for...in` loop and `String.prototype.slice()` to `yield` each substring of the given string, starting at the end.
```js
const rightSubstrGenerator = function* (str) {
if (!str.length) return;
for (let i in str) yield str.slice(-i - 1);
};
```
```js
[...rightSubstrGenerator('hello')];
// [ 'o', 'lo', 'llo', 'ello', 'hello' ]
```