Не могу понять почему не работает код. Уже час голову ломаю.
//Образец по которому написан код
function makeCounter() {
var currentCount = 0;
// возвращаемся к функции
function counter() {
return ++currentCount;
}
// ...и добавляем ей методы!
counter.set = function(value) {
currentCount = value;
};
counter.reset = function() {
currentCount = 0;
};
return counter;
}
var counter2 = makeCounter();
counter2.set(4)
console.log(counter2());
//Собственно код
function lio(){
var t = 34;
function getoo(){
return t +12;
}
return getoo;
getoo.prin = function(){
console.log(666);
}
};
var rio = lio();
rio.prin();
//пишет Uncaught TypeError: undefined is not a function