私を初心者と呼んでくださいが、これを機能させることができないようです:
var value = ""; // Tried this
function getKey(key) {
var value = ""; // And this
chrome.storage.local.get(key, function (data) {
var value = data[key];
console.log(value); // This prints the correct value
});
console.log(value); // But this will always print null
}
理由はありますか?