Skip to content

Commit 810f481

Browse files
committed
Fix strings solution
Creating variables in problems and not using variables in solutions is confusing.
1 parent 5c14e74 commit 810f481

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

solutions/strings/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
console.log('this is a string')
1+
const someString = 'this is a string'
2+
console.log(someString)

0 commit comments

Comments
 (0)