Jump to content
  • 0

проверка на число.


DivMan
 Share

Question

Как введённое значение в prompt проверить на число?

 

Нужно что бы, если в prompt, ввести число, то этот prompt появится опять.

var arr = [];var age = prompt('Введите числа', '');arr.push(age);if (age == "" || age == null) {	document.write("Введите число");}else if (age == number) {	var age = prompt('Введите числа', '');}document.write(arr)
Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0

Держите функцию проверки

function isNum(n) {   return Number(n) === n;}

Если нужны не целые или целые числа отдельно, то по такому принципу

function isInt(n){    return Number(n) === n && n % 1 === 0;}function isFloat(n){    return n === Number(n) && n % 1 !== 0;}
Edited by nomalware
  • Like 1
Link to comment
Share on other sites

  • 0

Предупреждение: хотя на сегодняшний момент большинство браузеров поддерживают свойство Object.prototype.__proto__, его поведение только недавно было стандартизировано в новой спецификации ECMAScript 6. Если вам требуется поддержка браузеров до этой спецификации, рекомендуется использовать вместо него метод Object.getPrototypeOf().

Хотя конечно есть всякие Babel.js, но всё равно рановато ящитаю.

Link to comment
Share on other sites

  • 0

 

Предупреждение: хотя на сегодняшний момент большинство браузеров поддерживают свойство Object.prototype.__proto__, его поведение только недавно было стандартизировано в новой спецификации ECMAScript 6. Если вам требуется поддержка браузеров до этой спецификации, рекомендуется использовать вместо него метод Object.getPrototypeOf().

Хотя конечно есть всякие Babel.js, но всё равно рановато ящитаю.

 

Мне кажется, это уже лишняя перестраховка.

С зеленого начинается IE 11.

См. скриншот: https://www.dropbox.com/s/12xlxqvjw9f1u3f/Screenshot%20from%202015-11-20%2023%3A17%3A16.png?dl=0

Табличка тут: https://kangax.github.io/compat-table/es6/

А те, кто использует ИЕ 10- должны страдать)

 

Edited by cat
Link to comment
Share on other sites

  • 0
On 11/18/2015 at 5:07 PM, DivMan said:

Как введённое значение в prompt проверить на число?

 

var a = +prompt('Введите число');

Проверяем:

var a = +prompt('Введите число'); // 33
console.log(a); // 33 .
console.log(typeof a); // Number .
console.log(Number.isInteger(a)); // True .

 

var a = +prompt('Введите число'); // 5de
console.log(a); // NaN .
console.log(typeof a); // Number .
console.log(Number.isInteger(a)); // False .

 

 
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy