html JS Bin //来源http://jsbin.com/muqigog
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html JS Bin //来源http://jsbin.com/muqigog相关的知识,希望对你有一定的参考价值。
console.clear()
const addCounter = list => [...list, 0]
const removeCounter = (list, index) => {
return [
...list.slice(0, index),
...list.slice(index + 1)
];
}
const incrementCounter = (list, index) => {
return [
...list.slice(0, index),
list[index] + 1,
...list.slice(index + 1)
]
}
const testAddCounter = () => {
const listBefore = []
const listAfter = [0]
deepFreeze(listBefore)
expect(
addCounter(listBefore)
).toEqual(listAfter)
}
const testRemoveCounter = () => {
const listBefore = [0, 10, 20]
const listAfter = [0, 20]
deepFreeze(listBefore)
expect(
removeCounter(listBefore, 1)
).toEqual(listAfter)
}
const testIncrementCounter = () => {
const listBefore = [0, 10, 20]
const listAfter = [0, 11, 20]
deepFreeze(listBefore)
expect(
incrementCounter(listBefore, 1)
).toEqual(listAfter)
}
testAddCounter()
testRemoveCounter()
testIncrementCounter()
console.log('All tests passed.')
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/expect/1.20.2/expect.min.js"></script>
<script src="https://wzrd.in/standalone/deep-freeze@latest"></script>
<script id="jsbin-javascript">
console.clear()
const addCounter = list => [...list, 0]
const removeCounter = (list, index) => {
return [
...list.slice(0, index),
...list.slice(index + 1)
];
}
const incrementCounter = (list, index) => {
return [
...list.slice(0, index),
list[index] + 1,
...list.slice(index + 1)
]
}
const testAddCounter = () => {
const listBefore = []
const listAfter = [0]
deepFreeze(listBefore)
expect(
addCounter(listBefore)
).toEqual(listAfter)
}
const testRemoveCounter = () => {
const listBefore = [0, 10, 20]
const listAfter = [0, 20]
deepFreeze(listBefore)
expect(
removeCounter(listBefore, 1)
).toEqual(listAfter)
}
const testIncrementCounter = () => {
const listBefore = [0, 10, 20]
const listAfter = [0, 11, 20]
deepFreeze(listBefore)
expect(
incrementCounter(listBefore, 1)
).toEqual(listAfter)
}
testAddCounter()
testRemoveCounter()
testIncrementCounter()
console.log('All tests passed.')
</script>
<script id="jsbin-source-javascript" type="text/javascript">console.clear()
const addCounter = list => [...list, 0]
const removeCounter = (list, index) => {
return [
...list.slice(0, index),
...list.slice(index + 1)
];
}
const incrementCounter = (list, index) => {
return [
...list.slice(0, index),
list[index] + 1,
...list.slice(index + 1)
]
}
const testAddCounter = () => {
const listBefore = []
const listAfter = [0]
deepFreeze(listBefore)
expect(
addCounter(listBefore)
).toEqual(listAfter)
}
const testRemoveCounter = () => {
const listBefore = [0, 10, 20]
const listAfter = [0, 20]
deepFreeze(listBefore)
expect(
removeCounter(listBefore, 1)
).toEqual(listAfter)
}
const testIncrementCounter = () => {
const listBefore = [0, 10, 20]
const listAfter = [0, 11, 20]
deepFreeze(listBefore)
expect(
incrementCounter(listBefore, 1)
).toEqual(listAfter)
}
testAddCounter()
testRemoveCounter()
testIncrementCounter()
console.log('All tests passed.')</script></body>
</html>
以上是关于html JS Bin //来源http://jsbin.com/muqigog的主要内容,如果未能解决你的问题,请参考以下文章
html 表单效果//来源http://js.jirengu.com/qacoxoleji
html Modal样式//来源http://js.jirengu.com/dituyefika
html alert效果//来源http://js.jirengu.com/tulahabene
html JS Bin //来源http://jsbin.com/muqigog
html JS Bin //来源http://jsbin.com/muqigog
html JS Bin //来源http://jsbin.com/muqigog