Skip to content

Commit

Permalink
Merge pull request #1745 from bgoonz/master
Browse files Browse the repository at this point in the history
  • Loading branch information
bgoonz authored Mar 6, 2022
2 parents b76ea0f + 112a1f6 commit 371416c
Show file tree
Hide file tree
Showing 41 changed files with 2,194 additions and 4,795 deletions.
933 changes: 470 additions & 463 deletions README.md

Large diffs are not rendered by default.

134 changes: 0 additions & 134 deletions notes/JS-DOC/compileerror.md

This file was deleted.

78 changes: 0 additions & 78 deletions notes/JS-DOC/compilestreaming.md

This file was deleted.

13 changes: 10 additions & 3 deletions notes/articles/medium/markdown/final.md
Original file line number Diff line number Diff line change
Expand Up @@ -21400,7 +21400,8 @@ const jane = new Person(&quot;Jane&quot;);</code></pre>
<p>Using print with no arguments:</p>
<pre><code>&gt;&gt;&gt; print()

&gt;&gt;&gt;</code></pre>
&gt;&gt;&gt;</code></pre>

<p>Note: the empty line after calling the print function. The default end value when calling print is the newline character \\n.</p>
<p>Using print with a string literal:</p>
<pre><code>&gt;&gt;&gt; print("WebDevHub School is awesome!")
Expand Down Expand Up @@ -21546,8 +21547,11 @@ git checkout -</code></pre>
git pull --rebase upstream master

# Squash multiple commits into one for a cleaner git log

# (on the following screen change the word pick to either &#39;f&#39; or &#39;s&#39;)
git rebase -i $commit_ref</code></pre>

git rebase -i $commit_ref</code></pre>

<h3 id="submodules">Submodules</h3>
<pre><code># Import .gitmodules
git submodule init
Expand Down Expand Up @@ -21674,8 +21678,11 @@ git checkout -</code></pre>
git pull --rebase upstream master

# Squash multiple commits into one for a cleaner git log

# (on the following screen change the word pick to either &#39;f&#39; or &#39;s&#39;)
git rebase -i $commit_ref</code></pre>

git rebase -i $commit_ref</code></pre>

<h3 id="submodules-1">Submodules</h3>
<pre><code># Import .gitmodules
git submodule init
Expand Down
10 changes: 2 additions & 8 deletions src/pages/docs/career/wed-dev-questions.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ seo:
template: docs
---





## Inserting an item into an existing array

Inserting an item into an existing array is a daily common task. You can add elements to the end of an array using push, to the beginning using unshift, or to the middle using splice.
Expand Down Expand Up @@ -5587,8 +5583,7 @@ We all know that JavaScript is loosely typed and in some cases it fall behind sp
```javascript
0 == ' '; //true

(null ==
undefined[1]) == //true
(null == undefined[1]) == //true
true; //true
```
Expand Down Expand Up @@ -5675,8 +5670,7 @@ function reject(obj, keys) {
// or, reusing pick

function reject(obj, keys) {
const vkeys = Object.keys(obj)
.filter((k) => !keys.includes(k));
const vkeys = Object.keys(obj).filter((k) => !keys.includes(k));

return pick(obj, vkeys);
}
Expand Down
Loading

0 comments on commit 371416c

Please sign in to comment.