Compare commits
No commits in common. "92189d5aa191e5cabc6e8772a5bf9a348e892460" and "c174bc588e8977f1b4d14eb96dacfd1c3ce0374b" have entirely different histories.
92189d5aa1
...
c174bc588e
@ -2,6 +2,3 @@ canvas {
|
||||
image-rendering: crisp-edges;
|
||||
image-rendering: pixelated;
|
||||
}
|
||||
|
||||
/* JavaScript */
|
||||
/* context.imageSmoothingEnabled = false; */
|
||||
|
@ -1,4 +1,3 @@
|
||||
# HTML
|
||||
|
||||
- [favicons.html](favicons.html)
|
||||
- [humans.txt](humans.txt)
|
||||
|
@ -1,9 +0,0 @@
|
||||
<head>
|
||||
<!-- Icons -->
|
||||
<link rel="apple-touch-icon" sizes="180×180" href="apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="120×120" href="favicon-120x120.png">
|
||||
<link rel="icon" type="image/png" sizes="32×32" href="favicon-32×32.png">
|
||||
<link rel="icon" type="image/png" sizes="16×16" href="favicon-16×16.png">
|
||||
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
||||
<link rel="manifest" href="site.webmanifest">
|
||||
</head>
|
@ -2,7 +2,6 @@
|
||||
|
||||
## Basic
|
||||
- [Arrays](arrays.js) - работа с массивами
|
||||
- [Spread syntax](spread.js) - распаковка массива в аргументы
|
||||
|
||||
## Other
|
||||
- [Webpack](webpack.md) example config
|
||||
|
@ -1,11 +0,0 @@
|
||||
function sum(x, y, z) {
|
||||
return x + y + z;
|
||||
}
|
||||
|
||||
const numbers = [1, 2, 3];
|
||||
|
||||
console.log(sum(...numbers));
|
||||
// expected output: 6
|
||||
|
||||
console.log(sum.apply(null, numbers));
|
||||
// expected output: 6
|
Loading…
Reference in New Issue
Block a user