We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c7d04b commit 36cedccCopy full SHA for 36cedcc
js/scripts.js
@@ -401,7 +401,6 @@ var rechner = (function (rechner) {
401
// AC - All Clear
402
403
function allClear() {
404
-
405
$operand1Decimal.val('');
406
$operand1Binary.val('');
407
$operand1System.val('');
@@ -411,14 +410,13 @@ var rechner = (function (rechner) {
411
410
$resultDecimal.val('');
412
$resultBinary.val('');
413
$resultSystem.val('');
414
415
}
416
417
// Bitwise Operators - The Buttons right side from the operand
418
// Not (~) or (!)
419
420
function bitwiseNot(binaryInputID) {
421
+
422
var binary = binaryInputID.val();
423
var reversedBinary = "";
424
0 commit comments