en
Bücher
Loiane Groner

Learning JavaScript Data Structures and Algorithms

  • Tatiana Bunaevahat Zitat gemachtvor 3 Jahren
    rrays in JavaScript are modified objects, meaning that every array that we create has a few methods available to be used.
  • Tatiana Bunaevahat Zitat gemachtvor 3 Jahren
    stack is an ordered collection of items that follows the LIFO (short for Last In First Out) principle.
  • Tatiana Bunaevahat Zitat gemachtvor 3 Jahren
    cope refers to where in the algorithm we can access the variable (it can also be a function when we are working with function scopes). There are local and global variables.
  • Tatiana Bunaevahat Zitat gemachtvor 3 Jahren
    In object-oriented programming (OOP), an object is an instance of a class. A class defines the characteristics of the object.
  • Tatiana Bunaevahat Zitat gemachtvor 3 Jahren
    In the prototype example, the printTitle function is going to be shared between all instances, and only one copy is going to be created. When we use class-based definition, as in the previous example, each instance will have its own copy of the functions. Using the prototype method saves memory and processing cost in regards to assigning the functions to the instance. However, you can only declare public functions and properties using the prototype method. With a class-based definition, you can declare private functions and properties and the other methods inside the class can also access them.
  • Tatiana Bunaevahat Zitat gemachtvor 3 Jahren
    However, using the new keyword is not a best practice. If you want to create an array in JavaScript, simply use brackets
  • Tatiana Bunaevahat Zitat gemachtvor 3 Jahren
    JavaScript only supports one-dimensional arrays; it does not support matrices. However, we can implement matrices or any multidimensional array by using an array of arrays, as in the previous code
  • rootarthat Zitat gemachtvor 6 Jahren
    In object-oriented programming (OOP), an object is an instance of a class. A class defines the characteristics of the object.
  • rootarthat Zitat gemachtvor 6 Jahren
    Scope refers to where in the algorithm we can access the variable
fb2epub
Ziehen Sie Ihre Dateien herüber (nicht mehr als fünf auf einmal)