SPA kodetime
This commit is contained in:
parent
b0523a9210
commit
6b3922eddc
0
MVC/navn og epost/index.html
Normal file
0
MVC/navn og epost/index.html
Normal file
31
MVC/navn og epost/model.js
Normal file
31
MVC/navn og epost/model.js
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
const model = {
|
||||||
|
app: {
|
||||||
|
page: 'search'
|
||||||
|
},
|
||||||
|
|
||||||
|
inputs : {
|
||||||
|
search: {
|
||||||
|
text: '',
|
||||||
|
},
|
||||||
|
createNew: {
|
||||||
|
name: '',
|
||||||
|
email: '',
|
||||||
|
},
|
||||||
|
delete: {
|
||||||
|
areYouSure: false,
|
||||||
|
personId: null,
|
||||||
|
},
|
||||||
|
edit: {
|
||||||
|
personId: null,
|
||||||
|
name: '',
|
||||||
|
email: '',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
// felles data
|
||||||
|
people: [
|
||||||
|
{ id: 1, name: 'Per', email: 'per@mail.com'},
|
||||||
|
],
|
||||||
|
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,2 @@
|
||||||
|
const SCRIPTS = require("./scripts.js");
|
||||||
|
|
|
@ -15,3 +15,18 @@ for (let key in arrays) newArray = newArray.concat(arrays[key]);
|
||||||
// }
|
// }
|
||||||
//reduceArrays();
|
//reduceArrays();
|
||||||
console.log(newArray2);
|
console.log(newArray2);
|
||||||
|
|
||||||
|
function loop(value, testFunc, updateFunc, bodyFunc){
|
||||||
|
for (let i = 0; i < value; i++){
|
||||||
|
if (testFunc == false){
|
||||||
|
return
|
||||||
|
} else {
|
||||||
|
// updateFunc(value)
|
||||||
|
|
||||||
|
bodyFunc(value);
|
||||||
|
}
|
||||||
|
value--;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
loop(3, n => n > 0, n => n - 1, console.log);
|
Loading…
Reference in a new issue