JavaScript
console.log("Hello, World!");
// For HTML document
document.write("Hello, World!");
PrototypeCodec
console.log("Hello, World!");
// For HTML document
document.write("Hello, World!");
let str = "12345.00";
str = str.substring(0, str.length - 1);
JavaScript, often abbreviated JS, is a programming language that is one
of the core technologies of the World Wide Web, alongside HTML and CSS.
Over 97% of websites use JavaScript on the client side for web page behavior,
often incorporating third-party libraries.
coursesRouter.get('/:id',expressAsyncHandler(async(req,res)=>{
const pageSize = 1;
const page = Number(req.query.pageNumber) || 1;
const courseId = req.params.id;
const course = await db('id').from('courses').where('id','=',courseId)
const courseName = course[0].name
const sections = await db('course_name').from('sections').where('course_name','=',courseName).limit(pageSize).offset(pageSize * (page - 1))
const count = await db('course_name').from('sections').count('sections')
console.log( Math.ceil( count[0]/pageSize));
res.send({sections , page, pages: Math.ceil( count[0]/pageSize)})
}))
ngOnInit(){
const body = {
PR_ID_P : this.NSGModuleTPAService.produit,
DATE_SELECTIONNEE_P : this.NSGModuleTPAService.dateSelectionnee,
}
console.log(body)
this.NSGModuleTPAService.ExecuteScanEmplacement(body)
}
changerEtat() {
this.TPAChangeEvent.emit(3)
}
retourEtat() {
this.TPAChangeEvent.emit(2)
}
testSucces() {
notify('Colis ajouté avec succès', 'success', 100)
}
form_fieldDataChanged(e) {
let updatedField = e.dataField
const body = {
DATE_SELECTIONNEE_P :this.NSGModuleTPAService.dateSelectionnee ,
PR_ID_P :this.NSGModuleTPAService.produit,
EMPLACEMENT_P : e.value
}
console.log(body)
notify(updatedField.toString(), 'success', 1000)
if (e.dataField == "emplacement Scan",e.value != "") {
if (this.NSGModuleTPAService.ExecuteScanEmplacement(body).pipe(takeUntil(this.ngUnsubscribe))
.subscribe(
(res: any) => {
console.log(res)
}, )
)
console.log()
}
e.value = ' ';
}
function makeTask(data) {
const completed = false;
const category = "General";
const priority = "Normal";
}
*Вызов makeTask({})
возвращает { category: "General", priority: "Normal", completed: false }
*Вызов makeTask({ category: "Homemade", priority: "Low", text: "Take out the trash" })
возвращает { category: "Homemade", priority: "Low", text: "Take out the trash", completed: false }
*Вызов makeTask({ category: "Finance", text: "Take interest" })
возвращает { category: "Finance", priority: "Normal", text: "Take interest", completed: false }
*Вызов makeTask({ priority: "Low", text: "Choose shampoo" })
возвращает { category: "General", priority: "Low", text: "Choose shampoo", completed: false }
*Вызов makeTask({ text: "Buy bread" })
возвращает { category: "General", priority: "Normal", text: "Buy bread", completed: false }