我从没做过编程,在我的工程学第二学期以前,我从来没有编码过,在大学里,精湛的技巧完全融入了JavaScript。这听起来可能很业余,但是我想知道如何在函数内使用已声明的变量初始化类。
“ Deck”类已全部为我预编码。我必须检索并解析一个已编码到名为deckObject
的变量中的JSON字符串(我也完成了此操作)。现在,我必须使用该变量来初始化Deck类。
function retrieveDeck()
{
if (typeof(Storage) !== "undefined")
{
// TODO: Retrieve the stored JSON string and parse
// to a variable called deckObject.
var deckObject = JSON.parse(deckInstance);
// Use this to initialise an new instance of
// the Deck class.
}
else
{
console.log("Error: localStorage is not supported by current browser.");
}
}