摘要:
# Javascript 构造函数、原型对象、实例之间的关系 # 创建对象的方式 # 1.new object() 缺点:创建多个对象困难 var hero = new Object(); // 空对象 hero.blood = 100; hero.name = '刘备'; hero.weapon 阅读全文
摘要:
#! /bin/bash git_user_name=`git config user.name` git_user_mail=`git config user.email` branch_name="local" remote_alise=`git remote | tail -1` remote 阅读全文