- Chained comparison (
a < b < c
) - Named function arguments (
function a(b: int, c: string)
anda(c: 'foo')
) - Conditional catch blocks
try {
if (true) {
throw new MinorError()
} else {
throw new MajorError()
}
a < b < c
)function a(b: int, c: string)
and a(c: 'foo')
)try {
if (true) {
throw new MinorError()
} else {
throw new MajorError()
}
{ | |
"basics": { | |
"name": "Sebastian Hädrich", | |
"label": "Programmer", | |
"image": "", | |
"email": "[email protected]", | |
"phone": "", | |
"url": "https://sebastian-haedrich.de", | |
"summary": "", | |
"location": { |
Object.defineProperty(Number.prototype, "milliseconds", { | |
get() { | |
return this / 1000; | |
}, | |
configurable: true, | |
}); | |
Object.defineProperty(Number.prototype, "seconds", { | |
get() { | |
return this; | |
}, |
View topic | Edit topic | Action | Description | Repositories | Followers | |
---|---|---|---|---|---|---|
✓ | oop | oop | create | 10,813 | ||
object-oriented | create | 1,030 | ||||
✓ | object-oriented-programming | create | 6,518 | |||
✓ | bootstrap | bootstrap | edit | add sections to description | 63,120 | 81.7k |
✓ | tailwind | tailwind | edit | add sections to description | 10,014 | 410 |
✓ | infrastructure-as-code | [inf |
<cfscript> | |
dump(nullValue()); | |
</cfscript> |
<cfscript> | |
key = GeneratePBKDFKey('PBKDF2WithSHA512','top_secret','sodium_chloride',2000,8); | |
</cfscript> |
Hier findest du ein einfaches Beispiel, wie du mehrere Formulare und auch Infotexte so kombinieren kannst, dass die Daten erst clientseitig gespeichert werden und später gebündelt zur Verfügung stehen, um beispielsweise an eine serverseitige Scriptsprache gesendet zu werden.
See it in action: http://codepen.io/anon/pen/zxLqqp