1a5e3f08c0 | ||
---|---|---|
.. | ||
README.md | ||
SUMMARY.md | ||
book.json |
README.md
Introduction
This is a demo book.
build
gitbook install
gitbook serve
# view http://localhost:4000
demo
demo 1: typescript
class Polygon {
constructor(height, width) {
this.height = height;
this.width = width;
}
get area() {
return this.height * this.width;
}
}
demo 2: javascript
function foo(bar) {
var a = 42,
b = "Prism";
return a + bar(b);
}