projet-clicodrome/js/element.js
2024-11-21 10:27:03 +01:00

11 lines
No EOL
117 B
JavaScript

class element{
constructor(tag,id) {
this.tag = tag
this.id = id
}
afficher(){
}
}