摘要:
本文摘自高性能MYSQL 假设有如下数据库: CREATE TABLE People(last_name VARCHAR(50) NOT NULL,first_name VARCHAR(50) NOT NULL,dob DATE NOT NULL,gender ENUM('m','f') NOT N 阅读全文
摘要:
var scope="global"; function constructFunction(){ var scope="local"; return new Function(" return scope"); } constructFunction()(); function construct 阅读全文