Skip to content

Instantly share code, notes, and snippets.

View midesweb's full-sized avatar

Miguel Angel Alvarez midesweb

View GitHub Profile
@midesweb
midesweb / scala
Created September 26, 2024 10:19
Código Scala Primera Clase
val myFirstScalaVariable: Int = 5
val bookTitle: String = "Lord of the Rings: The Fellowship of the Ring"
val bookAuthor: String = "J. R. R. Tolkien"
val bookNoOfPages: Int = 423
val message: String = "Hello World"
@midesweb
midesweb / index.js
Created June 6, 2019 09:15
JSON Circular References Comprobation
let user1 = {
name: 'Miguel',
age: 6
}
let user2 = {
name: 'Maria',
age: 7
}
let theClass = [user1, user2];