diff options
author | Peter Bengtsson <mail@peterbe.com> | 2021-07-27 11:33:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-27 11:33:10 -0400 |
commit | a0187295debbfe75d4409f360ba7e0ff765ca2f3 (patch) | |
tree | cef7a50cd705e6751347178ac4ef4ca7bb32dcd2 /files/pl/web/javascript/eventloop/index.html | |
parent | 9fb44756a5432219d159d6892341e0a9e0582bb2 (diff) | |
download | translated-content-a0187295debbfe75d4409f360ba7e0ff765ca2f3.tar.gz translated-content-a0187295debbfe75d4409f360ba7e0ff765ca2f3.tar.bz2 translated-content-a0187295debbfe75d4409f360ba7e0ff765ca2f3.zip |
remove link 'title' attributes that's just the 'href' (pl) (#1736)
Diffstat (limited to 'files/pl/web/javascript/eventloop/index.html')
-rw-r--r-- | files/pl/web/javascript/eventloop/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/pl/web/javascript/eventloop/index.html b/files/pl/web/javascript/eventloop/index.html index e61f3c2a48..ba65ed3311 100644 --- a/files/pl/web/javascript/eventloop/index.html +++ b/files/pl/web/javascript/eventloop/index.html @@ -95,4 +95,4 @@ console<span class="punctuation token">.</span><span class="function token">log< <p>A very interesting property of the event loop model is that JavaScript, unlike a lot of other languages, never blocks. Handling I/O is typically performed via events and callbacks, so when the application is waiting for an <a href="/en-US/docs/Web/API/IndexedDB_API" title="/en-US/docs/IndexedDB">IndexedDB</a> query to return or an <a href="/en-US/docs/Web/API/XMLHttpRequest" title="/en-US/docs/DOM/XMLHttpRequest">XHR</a> request to return, it can still process other things like user input.</p> -<p>Legacy exceptions exist like <code>alert</code> or synchronous XHR, but it is considered as a good practice to avoid them. Beware, <a href="http://stackoverflow.com/questions/2734025/is-javascript-guaranteed-to-be-single-threaded/2734311#2734311" title="http://stackoverflow.com/questions/2734025/is-javascript-guaranteed-to-be-single-threaded/2734311#2734311">exceptions to the exception do exist</a> (but are usually implementation bugs rather than anything else).</p> +<p>Legacy exceptions exist like <code>alert</code> or synchronous XHR, but it is considered as a good practice to avoid them. Beware, <a href="http://stackoverflow.com/questions/2734025/is-javascript-guaranteed-to-be-single-threaded/2734311#2734311">exceptions to the exception do exist</a> (but are usually implementation bugs rather than anything else).</p> |