Skip to content

Instantly share code, notes, and snippets.

View shockwaves's full-sized avatar

Artem shockwaves

  • black mesa
View GitHub Profile
let Table = {
increment: 0,
init(rows,columns){
this.rows = rows;
this.columns = columns;
this.matrix = this.generateMatrix();
},
generateMatrix(){
let arr = [];
for(let i=0; i<this.columns; i++){
"use strict";
class Users {
constructor(id) {
this.id = id;
}
static create(id) {
this.all.push(new this(id));
}
<!DOCTYPE html>
<html>
<head>
<style>
html, body, video {
width: 100%;
height: 100%;
margin: 0;
padding: 0;