Skip to content

Commit 3b03006

Browse files
committed
modify
1 parent 0c14347 commit 3b03006

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

problemSolvingPractices/problems/p3-BinaryConversion/p3-BinaryConversion.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
// Binary to Decimal
2-
//
1+
// IPv4 Binary to Decimal
32

43

54
const Binary = document.getElementById('input1')
@@ -83,6 +82,6 @@ function BinaryToDecimal(Binary){
8382
};
8483

8584

86-
return IPAddressInDecimal = `Result: ${firstOctetDecimal}.${secondOctetDecimal}.${thirdOctetDecimal}.${fourthOctetDecimal}`
85+
return `Result: ${firstOctetDecimal}.${secondOctetDecimal}.${thirdOctetDecimal}.${fourthOctetDecimal}`
8786

8887
}

0 commit comments

Comments
 (0)