We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6c3be24 + 6dfcbc6 commit 69a857cCopy full SHA for 69a857c
02_Day/02_day_data_types.md
@@ -610,7 +610,7 @@ string.charCodeAt(index)
610
611
```js
612
let string = '30 Days Of JavaScript'
613
-console.log(string.charCodeAt(3)) // D ASCII number is 51
+console.log(string.charCodeAt(3)) // D ASCII number is 68
614
615
let lastIndex = string.length - 1
616
console.log(string.charCodeAt(lastIndex)) // t ASCII is 116
0 commit comments