Skip to content

Commit 8c13bdd

Browse files
committed
refactor: Improve decoder.js file for better decoding functionality
This commit refactors the decoder.js file to enhance the decoding functionality. It updates the comment in the code to accurately describe the purpose of the file. Additionally, it adds a console.log statement to display the decoded message. These changes improve the clarity and usability of the decoder functionality.
1 parent 7ade127 commit 8c13bdd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

decoder.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This is a decoder based of the encoder code in the repo
1+
// This is a decoder based of the encoder file in the repo
22
function decode(encodedStr) {
33
let decoded = "";
44
for (let i = 0; i < encodedStr.length; i++) {
@@ -15,3 +15,5 @@ function decode(encodedStr) {
1515
}
1616
const encodeMessage = encode("Code by ybtuti");
1717
const decodeMessage = decode(encodeMessage);
18+
19+
console.log(decodedMessage);

0 commit comments

Comments
 (0)