Ranjit Battwad

  • DDaudalagidfez uma citaçãohá 2 anos
    2++; // Unary Operator
    2 + 3; // Binary Operator
    (4 > 3) ? true : false; //Ternary Operator
  • DDaudalagidfez uma citaçãohá 2 anos
    let rem= num1 % num2; // Modulus
    num1++; // Post-increment
    ++num1; // Pre-increment
    num1-- // Post-decrement
    --num1 // Pre-decrement
  • DDaudalagidfez uma citaçãohá 2 anos
    It is considered a good programming practice to add enough comments so anyone can understand your code just by looking at it with the supporting comments.
  • DDaudalagidfez uma citaçãohá 2 anos
    The browser attaches the style to the associated DOM nodes and finally displays the contents of the DOM.
  • DDaudalagidfez uma citaçãohá 2 anos
    It matches only those elements matched by the second selector that are the children of elements matched by the first
    It is stricter than a descendent selector where the element2 can be the child of element1 at any level of DOM.
fb2epub
Arraste e solte seus arquivos (não mais do que 5 por vez)