js中var=‘‘判断问题

js判断比较中
var = ‘’;
是字符串比较

需要转换成 数字类型 const
const number= parseInt(‘’);

举例:


var lot = {
			  num1 : '',
			  num2 : ''
		}
		lot.num1 = '123456';
		lot.num2 = '1234433';
		// 正确:
		const num1 = parseInt(lot.num1);
		const num2 = parseInt(lot.num2);
		// if(num1 >= num2){
		// 			  alert("success");
		// }else{
		// 			  alert("error");
		// }
		
		// 错误
		if(lot.num1 >= lot.num2){
					  alert("success");
		}else{
					  alert("error");
		}

你可能感兴趣的:(javascript,前端,开发语言)