Difference between console.log and return in javascript?(javascript中的console.log和return之间的区别?)
问题描述
在 javascript 中使用 console.log
和 return
的实例有哪些?
What are the instances when you would use console.log
and return
in javascript?
我刚开始学习 javascript,我想知道在哪些情况下我会使用它们?
I've just started learning javascript and I want to know what are some instances when I'd use them?
推荐答案
来自 http://blogs.msdn.com/b/cdndevs/archive/2011/05/26/console-log-say-goodbye-to-javascript-alerts-for-debugging.aspx
console.log 将显示传递给 log 方法的参数控制台窗口.使用此方法在控制台窗口.
console.log will display the parameter passed to the log method in the console window. Use this method to display a string or variable in the console window.
您也可以在代码中使用控制台类,就像我们一样使用 JavaScript 警报.
You can use the console class in your code as well, much like we can use JavaScript alerts.
<script type = "text/javascript">
function tryConsole() {
console.log("hello world");
}
</script>
当使用return
语句时,函数将停止执行,并返回指定的值.
When using the return
statement, the function will stop executing, and return the specified value.
这篇关于javascript中的console.log和return之间的区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:javascript中的console.log和return之间的区别?
基础教程推荐
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01