I have this function :
$scope.SearchTicketEvent = function (ticketPinOrEvent)
{
if (ticketPinOrEvent != undefined)
{
if (ticketPinOrEvent.length == 10)
{
$scope.PinTicketSearch(ticketPinOrEvent);
}
}
}
How can i check if ticketPinOrEvent is number ? I tried with angular.isNumber(ticketPinOrEvent)
but i dont get anything?
If you want to use angular.isNumber
if ( !isNaN(ticketPinOrEvent) && angular.isNumber(+ticketPinOrEvent)) {
}
You might use the typeof
to test if a variable is number.
if (typeof ticketPinOrEvent === 'number') {
$scope.PinTicketSearch(ticketPinOrEvent);
}
Or might try this:
if (!isNaN(ticketPinOrEvent) && angular.isNumber(ticketPinOrEvent)) {
$scope.PinTicketSearch(ticketPinOrEvent);
}
Testing against NaN:
NaN compares unequal
(via ==, !=, ===, and !==)
to any other value -- including to another NaN value. UseNumber.isNaN()
orisNaN()
to most clearly determine whether a value is NaN. Or perform a self-comparison: NaN, and only NaN, will compare unequal to itself.
In Angular 6 this works without using any prefix.
Example:
if(isNumber(this.YourVariable)){
// your Code if number
}
else {
// Your code if not number
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With