Skip to content

Instantly share code, notes, and snippets.

View mrFunkyWisdom's full-sized avatar

Ensar Bavrk mrFunkyWisdom

View GitHub Profile
@mrFunkyWisdom
mrFunkyWisdom / Optional.js
Created January 3, 2019 18:05
Java Optional type with JavaScript
class OptionalType {
constructor (value){
this.value = value
}
get() {
return this.value
}
getOrElse(orElse) {