Array#unshift

来源:互联网 发布:大数据标签体系 编辑:程序博客网 时间:2024/05/18 21:44
require "PP"
PP::pp ["b", "c", "d"].unshift("a") #["a", "b", "c", "d"]