You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
299 B
29 lines
299 B
const add = (a,b)=>{
|
|
return a+b;
|
|
}
|
|
|
|
|
|
new Promise(resolve => {
|
|
setTimeout(() => {
|
|
resolve(12234323)
|
|
}, 2000);
|
|
}).then(res=>{
|
|
console.log(123);
|
|
}).catch(e=>{
|
|
console.log(e)
|
|
})
|
|
|
|
console.log([1,2,5,3].includes(1));
|
|
|
|
console.log(process.env.NODE_ENV);
|
|
|
|
|
|
export default {
|
|
ab: 1332
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|