#css
Jak wyśrodkować glifikone w tym divie?
Druga sprawa to nie działają mi tutaj inne typy obramowania jak dotted, dashed itp.
http://codepen.io/frontendowiec/pen/GjqGYb
Jak wyśrodkować glifikone w tym divie?
Druga sprawa to nie działają mi tutaj inne typy obramowania jak dotted, dashed itp.
http://codepen.io/frontendowiec/pen/GjqGYb
In Computer Science a queue is an abstract Data Structure where items are kept in order. New items can be added at the back of the queue and old items are taken off from the front of the queue.
Write a function nextInLine which takes an array (arr) and a number (item) as arguments. Add the number to the end of the array, then remove the
Kopiuję wartość z pierwszego indeksu i dodaję jako ostatni element. Usuwam ten pierwszy. I tyle. Czy tutaj źle coś zrozumiałem?
function nextInLine(arr, item) {
testArr.push(testArr[0]); //pierwszy element idzie na koniec
testArr.shift(); //usuwam pierwszy element
testArr.push(item); //dodaje argument item na koniec kolejki
return item; // Change this line //może tutaj mam coś