需求转换成编码


9.06
需求转换
数、逻辑和交互

哪些数和值要存储,其中哪些需要展现出来,其中哪些数要输入进去。(data and value and their  input and output)

输入的各种数据和各种情况组合在一起,出现的不同的结果的应对方法,这是逻辑。


----------------------------------------------------------------------------------------------------------------
对代码来说: 数据和值存放在一个容器里面,这个容器有"变量variable",“常量const”

代码块存放在一个function里面,可以调用function来重复使用这个代码块。

----------------------------------------------------------------------------------------------------------------
运算
OperatorNameExample

+ | Addition | 6 + 9
-  | Subtraction | 20 - 15
*  | Multiplication | 3 * 7
/  | Division | 10 / 5

程序里面 + 也表示组合,比如 “张三"+"李四"   组合成:“张三李四”。

还有些简写符号: +=  
比如:  
let name = '张三';
name += ‘ 你好!’;

这里+= 和  name = name + ‘ 你好!’; 是一样的。

===;!==;<;>;

some code in edit

end at 10.07
阅读量: 490
发布于:
修改于: