BeyondCodeBootcamp / jswithtypes.com

JS with Types (jswt)
https://jswithtypes.com
0 stars 0 forks source link
hacktoberfest

jswithtypes.com

The source of https://jswithtypes.com.

Quick Start to Render

./bin/render

# Great Title

A great slide

---

# A Second Slide

Another great slide

---

<carousel data-line-start="1" data-slides="1-2|3|4"></carousel>

```js
let a = 1;
let b = 2;
let c = (x) => 1 + 2 + x;
c(3);

function greet() {
  return "Hello, World!";
}