Skip to content

Commit

Permalink
update md, add pr template
Browse files Browse the repository at this point in the history
  • Loading branch information
weston-bailey committed Apr 30, 2021
1 parent 20b61ad commit ab95b1e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Deliverable Submission

Please describe your comfort and completeness levels before submitting.

Comfort Level (1-5):

Completeness Level (1-5):

What did you think of this deliverable?:
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# JavaScript Clock Intervals
# ![](https://ga-dash.s3.amazonaws.com/production/assets/logo-9f88ae6c9c3871690e33280fcf557f33.png) JavaScript Clock Intervals

Create a webpage that displays a clock where the
second, minute, and hour hands tick.
Expand Down Expand Up @@ -26,9 +26,9 @@ to them through the DOM and setting a new value to
their CSS properties:

```js
var degrees = 45;
let degrees = 45;

var el = document.getElementById("myElement");
let el = document.getElementById("myElement");
el.style.transform = "rotate(" + degrees + "deg)";
```

Expand All @@ -48,8 +48,8 @@ hourRotation(5); // returns (5 / 12) * 360
Use JavaScripts `Date` objects to display the actual
time.

```
var now = new Date();
```js
let now = new Date();
```

Get `now` by declaring a new Date object. You can google for "MDN date methods" to see what
Expand Down

0 comments on commit ab95b1e

Please sign in to comment.