Skip to content

Commit 1a2ae36

Browse files
authored
[Edit] JavaScript Dates: .getUTCDate()
* Add codebyte to getUTCDate.md * Update getUTCDate.md Added a '.' character to the end in order to test that this commit is working. * Update getUTCDate.md with change added a '.' character to test the commit * Update getUTCDate.md * Update getUTCDate.md * Delete getUTCDate.md * Update getUTCDate.md * Update getUTCDate.md * Update getUTCDate.md * Update getUTCDate.md minor changes * Minor changes ---------
1 parent ed2abaf commit 1a2ae36

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

content/javascript/concepts/dates/terms/getUTCDate/getUTCDate.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,13 @@ This results in the following output:
3535
```shell
3636
1
3737
```
38+
39+
## Codebyte Example
40+
41+
The following code demonstrates how the `.getUTCDate()` method works:
42+
43+
```codebyte/javascript
44+
const myDate = new Date('2024-06-12');
45+
46+
console.log(myDate.getUTCDate());
47+
```

0 commit comments

Comments
 (0)