Skip to content

Commit 72aa4f0

Browse files
committed
minor fixes
1 parent cbd7d78 commit 72aa4f0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

1-js/05-data-types/03-string/article.md

+2
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,8 @@ There are 3 methods in JavaScript to get a substring: `substring`, `substr` and
445445
alert( str.substr(-4, 2) ); // 'gi', from the 4th position get 2 characters
446446
```
447447

448+
This method resides in the [Annex B](https://tc39.es/ecma262/#sec-string.prototype.substr) of the language specification. It means that only browser-hosted Javascript engines should support it, and it's not recommended to use it. In practice, it's supported everywhere.
449+
448450
Let's recap these methods to avoid any confusion:
449451

450452
| method | selects... | negatives |

7-animation/3-js-animation/text.view/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
timing: bounce,
3030
draw: function(progress) {
3131
let result = (to - from) * progress + from;
32-
textArea.value = text.substr(0, Math.ceil(result))
32+
textArea.value = text.slice(0, Math.ceil(result))
3333
}
3434
});
3535
}

0 commit comments

Comments
 (0)