Created
August 28, 2022 09:26
-
-
Save NhanKhangg98/fe7c608794b0293822531a606eca453b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const arr = [1, 2, 3, 4, 5, 6]; | |
| let rt = 0; | |
| for (let i = 0; i <= arr.length; i++) { | |
| rt += i; | |
| } | |
| console.log(rt) |
QuocCao-dev
commented
Aug 28, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment