Skip to content

Instantly share code, notes, and snippets.

@igaiga
Created March 23, 2011 06:48
Show Gist options
  • Save igaiga/882719 to your computer and use it in GitHub Desktop.
Save igaiga/882719 to your computer and use it in GitHub Desktop.
javascript で p メソッド
var p = function { print; };
var i18n = {};
i18n['hoge'] = "Hello";
var _ = function(key) { return i18n[key]; };
p(_('hoge'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment