Skip to content
View viniceosm's full-sized avatar

Block or report viniceosm

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
viniceosm/README.md

Hi there 👋

Pinned Loading

  1. tudoroxo tudoroxo Public

    purple theme visual code

  2. vexpress vexpress Public

    Criar um app inicial com express e alguns outros pacotes

    CSS 1

  3. autocompletev autocompletev Public

    auto complete customizable

    JavaScript

  4. Herança ES5 vs ES6 | super/extends Herança ES5 vs ES6 | super/extends
    1
    //---- ES6
    2
    
                  
    3
    class Pessoa {
    4
    	constructor(nome) {
    5
    		this._nome = nome;
  5. editions and years of ecma editions and years of ecma
    1
    New editions (starting with 2015) will be named ES followed by the year of release.
    2
    
                  
    3
    | editions | year |
    4
    |--|--|
    5
    |[ES1](https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf): |June 1997 |
  6. order by [nome or idade] array of ob... order by [nome or idade] array of objects js
    1
    let pessoas = [
    2
      {
    3
        nome: 'Naiara',
    4
        idade: 18
    5
      },