Skip to content

Commit 69a857c

Browse files
authored
Merge pull request Asabeneh#78 from silvaesouza/fix-day02-ascii-number
Fix day 02 ascii number
2 parents 6c3be24 + 6dfcbc6 commit 69a857c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

02_Day/02_day_data_types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ string.charCodeAt(index)
610610

611611
```js
612612
let string = '30 Days Of JavaScript'
613-
console.log(string.charCodeAt(3)) // D ASCII number is 51
613+
console.log(string.charCodeAt(3)) // D ASCII number is 68
614614

615615
let lastIndex = string.length - 1
616616
console.log(string.charCodeAt(lastIndex)) // t ASCII is 116

0 commit comments

Comments
 (0)