mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-15 12:43:19 +09:00
Transform 'var' in 'let'
This commit is contained in:
+1
-1
@@ -1,4 +1,4 @@
|
||||
var sumAll = function() {
|
||||
let sumAll = function() {
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
var sumAll = require('./sumAll')
|
||||
let sumAll = require('./sumAll')
|
||||
|
||||
describe('sumAll', function() {
|
||||
it('sums numbers within the range', function() {
|
||||
|
||||
Reference in New Issue
Block a user