尝试理解《Eloquent JavaScript》一书中代码片段的答案
P粉986937457
P粉986937457 2024-04-02 15:03:32
[JavaScript讨论组]

这是 Eloquent JavaScript 第 3 章中的代码片段。

const power = function(base, exponent) {
  let result = 1;
  for (let count = 0; count < exponent; count++) {
    result *= base;
  }
  return result;
};
console.log(power(2, 10));
// 1024

我是这样向自己解释的。但是我无法真正理解为什么返回 1024 somoene 可以帮我分解它吗?

/* 
    Explanation of code above.

     - We created a function named power. We used a function expression notation to create it. 
     
     - power has two parameters base and exponent.

     - the body of the function contains the code that the function will execute. 

    - the body does the following:

        1. declares a variable called result which has a value of 1.
        
        2. There is a for loop. Here are the parts of the for loop:

            - The intializer: the variable count is declared and assigned a value of 0

            - We are looking at the condition to see if it is truthy. The condition is whether count is greater than exponent. The loop will continue to iterate until this condition is truthy.

            - The incrementer: count will go up by 1 each iteration of the loop

            - The body of the for loop (the code to be executed) states that the result variable is equal to result *= base OR result = result * base 
    
    - then the function will return the value of result 

    - we are done with the function 

    - outside of the function we invoke it using console.log() and pass it the arguments 2 and 10 (base, exponent). 

    - The computer plugs the arguments into the function. The computer evaluates the condition in the for loop to see if its truthy. Basically, the computer asks is count < exponent? Count = 0 and exponent = 10. So the condition evaluates to falsey. 


    const power = function (2, 10) {
    let result = 1;
    for (let count = 0; 11 < 10; count++) {
                    1   10
                    2   10
                    3   10
                    4   10
                    5   10
                    6   10
                    7   10
                    8   10
                    9   10
                    10  10
                    11  10
                    
        result *= base; => 2 = 2 * 10
    }
    return result;

};

console.log(power(2,10));


*/

我期待结果 *= 基数,或结果 = 结果 * 基数。我知道我在迭代中遗漏了一些东西。

P粉986937457
P粉986937457

全部回复(1)
P粉005417748
for(let count = 0; count 

看来你已经明白这个错误的后果了。请注意,count 变量仅用于控制循环的迭代次数。每次迭代时,您都会更新 result 变量以包含新值,方法是将其与 base 值相乘,然后将其用于下一次计算。所以就会是这样的。

1 * 2 = 2
2 * 2 = 4
4 * 2 = 8
8 * 2 = 16
16 * 2 = 32
32 * 2 = 64
64 * 2 = 128
128 * 2 = 256
256 * 2 = 512
512 * 2 = 1024
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号