Skip to content
Snippets Groups Projects
class_film.js 164 B
Newer Older
  • Learn to ignore specific revisions
  • sacha's avatar
    sacha committed
    // jsp ou le ranger mdr
    class Movie{ 
        constructor(name, author, note){
            this.name = name;
            this.author = author;
            this.note = note;
        }
    }