Javascript Function All Parameters Is Empty

Javascript Function All Parameters Is Empty

Bir fonksiyondaki parametrelerin hiçbiri girilmediyse bunun kontrolünü ES ile halledebiliriz.

1
2
3
4
5
6
function Test(a,b,c,...){
if(arguments.length === 0){
//Hiçbir paremetre girilmemiştir.
//Tek tek sorgulamaya gerek kalmaz
}
}
#
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×