/** Adds to numbers. @param x {number} The X input @param y {number} The Y input @returns {number} x + y */ function myFunction(x, y = 10) { return x + y } myFunction() myFunction() class MyBigClass { constructor(pValue) { this.mValue = pValue; } getValue() { return this.mValue; } setValue(pValue) { this.mValue = pValue; } } const c = new MyBigClass(10); c.setValue(11); for (let index = 0; index < 30; index++) { console.log("Here"); }