ECMAScript6 009 – Symbols
New primitive With unique IDs Customized Symbols were made for Metaprogramming Source: https://www.freecodecamp.org/news/how-did-i-miss-javascript-symbols-c1f1c0e1874a/
New primitive With unique IDs Customized Symbols were made for Metaprogramming Source: https://www.freecodecamp.org/news/how-did-i-miss-javascript-symbols-c1f1c0e1874a/
Sets are a new object type with ES6 (ES2015) that allow to create collections of unique values. The values in a set can be either simple primitives […]
The key could be any object, but it must be an especific one when is called. if it is a […]
Const is used to assign a value that never changes. If the value of a “const” variable is changed by […]
After installing Anaconda in Ubuntu, open a terminal windows and run: The output should be something like… A new window […]
To open it with ubuntu, execute the following command to open notebook: This should open the dashboard navigate to find […]
Write print(“hello world”) command in the grey input area and press RUN (or Shift + Enter), to execute the command […]
Tuples:A tuple is a data structure that contains a sequence of elements of different data types. It can be used where you want […]