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 0c14347 commit 3b03006Copy full SHA for 3b03006
problemSolvingPractices/problems/p3-BinaryConversion/p3-BinaryConversion.js
@@ -1,5 +1,4 @@
1
-// Binary to Decimal
2
-//
+// IPv4 Binary to Decimal
3
4
5
const Binary = document.getElementById('input1')
@@ -83,6 +82,6 @@ function BinaryToDecimal(Binary){
83
82
};
84
85
86
- return IPAddressInDecimal = `Result: ${firstOctetDecimal}.${secondOctetDecimal}.${thirdOctetDecimal}.${fourthOctetDecimal}`
+ return `Result: ${firstOctetDecimal}.${secondOctetDecimal}.${thirdOctetDecimal}.${fourthOctetDecimal}`
87
88
}
0 commit comments