function is(a, b, description) {
let outcome = a == b; // Need to decide outcome here, as not everything can be serialized
send({
kind: "is",
outcome,
description: "" + description,
a: "" + a,
b: "" + b,
});
}
function isnot(a, b, description) {
let outcome = a != b; // Need to decide outcome here, as not everything can be serialized
send({
kind: "isnot",
outcome,
description: "" + description,
a: "" + a,
b: "" + b,
});
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.