10/10/2018, 09:52
javascript and human language
code javascript bằng ngôn ngữ tự nhiên.
Xem thêm tại: http://vnjs.net/?id=1000000101
PHP Code:
<script type="text/javascript">
K = {
'vi': {
'alert' : 'Thông báo',
'getById' : 'Tìm theo Id',
'round' : 'Làm tròn'
},
'en': {
'alert' : 'alert',
'getById' : 'getById',
'round' : 'round'
},
'func': {
'alert' : function(r) {alert(r)},
'getById' : function(r){return document.getElementById(r);},
'round' : Math.round
},
setLang: function(lg) {
var lang = lg || 'en', name = this***91;lang***93;, func = this***91;'func'***93;;
for (var o in func) {
if (Object.prototype***91;o***93;) {
continue;
}
this***91;name***91;o***93;***93; = func***91;o***93;;
}
this***91;'func'***93; = null;
delete this***91;'func'***93;;
}
};
K.setLang('vi');
K***91;"Thông báo"***93;(2);
alert(K***91;"Làm tròn"***93;(2.45));
</script>
Bài liên quan
<script type="text/javascript">
ThôngBáo = alert;
LàmTròn = Math.round;
ThôngBáo ( LàmTròn (2.45));
</script>