Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

markdown correcctions #1745

Merged
merged 3 commits into from
Mar 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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