快编程笔记

1.函数的参数要隔离

2.变量名不能以数字开头

测试样例:


const ensure = function(condition, message) {
// 在条件不成立的时候, 输出 message
if (not condition) {
log('*** 测试失败:', message)
} else {
log('||| 测试成功')
}
}

const floatEqual = function(a,b){
var delta = 0.00001
return abs(a - b) < delta

}

const test_find = function() {
ensure(find('hello', 'a') == -1, 'find 1')
ensure(find('hello', 'e') == 1, 'find 2')
ensure(find('hello', 'l') == 2, 'find 3')
}

入口main函数


const _main = function(){
// test_find()
// test_uppercase()
// test_lowercase1()
// test_uppercase1()
// test_encode1()
// test_decode1()
// test_encode2()
// test_decode2()
// test_encode3()
// test_decode3()
decode4()
}
_main()

你可能感兴趣的:(快编程笔记)