面试

alert(undefined=="undefined");

alert(undefined==="undefined")

var a="8";var b=5; console.log(a-b); console.log(typeof(a++)); console.log(a); console.log(a+b*2); 

定义一个person类,Name,Age,ID,方法判断是否成年  http://www.cnblogs.com/wangjq/p/3755691.html

function Person(name,age,job)
{
    this.name=name;
    this.age=age;
    this.job=job;
    this.sayName=function()
    {
        alert(this.name);
    };
}

var person = new Person("kevin",31,"SE");
person.sayName();

给Date 加一个format 方法,这个方法可以格式化2012-12-2,2012年12月2日字符串。prototype。

javascript 字符串倒序排列。
JavaScript字符规则。
数据库,合格率(大于80),语文数学。
oracle 会用吗?
原文地址:https://www.cnblogs.com/futengsheng/p/5462278.html