diff --git a/1-js/11-async/01-callbacks/article.md b/1-js/11-async/01-callbacks/article.md index daab93316..536f85700 100644 --- a/1-js/11-async/01-callbacks/article.md +++ b/1-js/11-async/01-callbacks/article.md @@ -1,20 +1,20 @@ -# Introduction: callbacks +# Įvadas: *callbacks* ```warn header="We use browser methods here" -To demonstrate the use of callbacks, promises and other abstract concepts, we'll be using some browser methods; specifically, loading scripts and performing simple document manipulations. +*Callbackų*, *promise'ų* ir kitų abstrakčių koncepcijų veikimo demonstacijai, bus naudojami naršyklės metodai. Pagrinde bus atliekamos paprastos dokumentų manipuliacijos pasitelkiant skriptus. -If you're not familiar with these methods, and their usage in the examples is confusing, or if you would just like to understand them better, you may want to read a few chapters from the [next part](/document) of the tutorial. +Jeigu šie metodai Jums dar nepažįstami, jų naudojimas pavyzdžiuose trikdo ar tiesiog norėtumėte juos suprasti geriau, pamėginkite paskaityti kelis skyrius iš kitos šių pratybų [dalies](/document). ``` -Many actions in JavaScript are *asynchronous*. In other words, we initiate them now, but they finish later. +Daugelis veiksmų JavaScripte yra *asinchroniški* (*asynchronous*). Kitaip tariant, mes juos inicijuojame dabar, bet jie įvykdomi vėliau. -For instance, we can schedule such actions using `setTimeout`. +Tokį veiksmą ateičiai mes galime suplanuoti naudodami `setTimeout` metodą. -There are other real-world examples of asynchronous actions, e.g. loading scripts and modules (we'll cover them in later chapters). +Egzistuoja ir kiti asinchroninių veiksmų pavyzdžiai, tarkime, skriptų ir modulių (*modules*) užkrovimas (juos aptarsime vėlesniuose skyriuose). -Take a look at the function `loadScript(src)`, that loads a script with the given `src`: +Pažvelkite į `loadScript(src)` funkciją, kurį užkrauna skriptą su pateiktu `src`. ```js function loadScript(src) { @@ -24,41 +24,41 @@ function loadScript(src) { } ``` -It appends to the document the new, dynamically created, tag `