From 01b0e12ba27b5069248fd09235e9a7143915ee30 Mon Sep 17 00:00:00 2001 From: Irvin Date: Wed, 16 Feb 2022 02:02:49 +0800 Subject: remove `notranslate` class in zh-CN --- files/zh-cn/web/javascript/guide/introduction/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'files/zh-cn/web/javascript/guide/introduction') diff --git a/files/zh-cn/web/javascript/guide/introduction/index.html b/files/zh-cn/web/javascript/guide/introduction/index.html index 8a6a283d5c..3848d00603 100644 --- a/files/zh-cn/web/javascript/guide/introduction/index.html +++ b/files/zh-cn/web/javascript/guide/introduction/index.html @@ -117,7 +117,7 @@ translation_of: Web/JavaScript/Guide/Introduction

控制台的工作方式与eval完全相同:返回最后输入的表达式。为了简单起见,可以想象每次输入到控制台的东西实际上都被 console.log 所包围。

-
function greetMe(yourName) { alert('Hello ' + yourName); } console.log(eval('3 + 5'));
+
function greetMe(yourName) { alert('Hello ' + yourName); } console.log(eval('3 + 5'));

代码草稿纸(Scratchpad)

@@ -133,7 +133,7 @@ translation_of: Web/JavaScript/Guide/Introduction

学习JavaScript 的第一步,打开浏览器的代码草稿纸尝试编写你的第一个 JavaScript 版本的 “Hello world” 程序。

-
function greetMe(user) {
+
function greetMe(user) {
   alert('Hi ' + user);
 }
 
-- 
cgit v1.2.3-54-g00ecf