把栈数组进行倒序就可以实现队列的先进先出了


var stack1  = [];
var stack2 = [];
function push(node)
{
    stack1.push(node);
}
function pop()
{        
    if(!stack1.length){
        return;  
    }
    const res =  stack1.reverse().pop();
    stack1.reverse()
    return res;
    // write code here
}
module.exports = {
    push : push,
    pop : pop
};