BAPFS Lecture 15

This commit is contained in:
2022-07-13 22:09:54 -04:00
parent 8117abedc9
commit 37e4b8874e
4 changed files with 1214 additions and 1 deletions

View File

@ -0,0 +1,19 @@
Symbol.Member;
Symbol.Member = 1;
Symbol.Member[0] = 1;
Symbol.Member.AnotherMember["Something"];
let str = "Hello World!";
let index = 0;
while (index < str.Length)
{
str[index];
// console.log(index, str[index]);
index += 1;
}