Added some things

This commit is contained in:
Cametendo
2026-04-20 11:20:54 +02:00
parent 97a7c9f0fb
commit 372b892862
29 changed files with 406 additions and 92 deletions

View File

@@ -0,0 +1,22 @@
export const someString = "just a string";
export const someNumber = 2;
export const someObject = {
name: "Oger",
rank: 1,
title: "Oger",
class: "Beast",
race: "Oger",
};
export function normalFunction() {
console.log("nomral function!");
}
export const arrowFunction = () => console.log("arrow function!");
export class SomePeron {
constructor(name, age) {
this.name = name;
this.age = age;
}
}