เป้าหมายคือการเขียนโปรแกรมที่จะสร้างคำที่ไม่คาดคิด
ฉันไม่ได้อ่านมันเลย ฉันมีปัญหาร้ายแรงกับการอ่านข้อความที่ยาว (และข้อความแสดงข้อผิดพลาด)
ฉันตัดสินใจที่จะสร้างโปรแกรมง่ายๆที่แจ้งเตือน "5" น่าเสียดายที่ฉันไม่สามารถทำงานได้
(function () {
"use strict";
function logError(e) {
// I have a serious issue with reading long error messages
// I'll just print the first word of the error and figure out what it means
console.log(e.message.split(" ")[0]);
}
// Useful assert method for debugging
function assert(value, message) {
if (value === false) {
throw new Error(message);
}
}
// Sets a varaible "a" to 5 and alerts it
try {
// Try it the old fashioned way
a = 5;
alert(a);
} catch (e) {
logError(e);
// In some legacy browsers, that might now work
// because alert requires a string
try {
// create objA which has a method "word", which always returns a word, or a string
var objA = {
word: function () {
return new String(5);
}
};
// Make sure it is a string
assert(typeof objA.word() === "string", "word didn't return a string");
alert(objA.word());
} catch (e) {
logError(e);
// Some browsers, such as chrome, just won't work
// It's time to be evil and force them to work!
try {
eval("a = 5" +
"alert(a)");
} catch (e) {
logError(e);
}
}
}
})();
ทดสอบในคอนโซล google chrome มันผลิต (ตัวอักษร) เป็นคำที่ไม่คาดคิด
http://jsfiddle.net/prankol57/Af4sH/
(สำหรับ jsfiddle คุณต้องเปิดคอนโซลของคุณจะไม่มีเอาต์พุต html ใด ๆ )