万能的 V 友, CodeWars: How can I throw an error here? 求解

2020-01-23 13:53:03 +08:00
 syaki

codewars 里的一道题目,求解题思路

我目前的想法是:通过语法错误抛出 error,避免使用 throw。

但是如何在不使用 Error 的情况下,定义 Error 的 message。

另一个思路是如何不使用 throw 抛出一个自定义 message 的 error

Try to write a function named bang throwing an error with a message string "Just throw like this!" with these limits:

no invoking require function no invoking function constructors no invoking eval function no throw in your code no Error in your code no \ in your code Also, we removed fs, assert and vm from global scope, and removed assert from console. Do not modify Error in global scope, we do not use it to check.

7367 次点击
所在节点    Node.js
5 条回复
EPr2hh6LADQWqRVH
2020-01-23 14:13:33 +08:00
懒得知道,小学奥数有意思吗
bertonzh
2020-01-23 16:44:48 +08:00
Function.call 吧
syaki
2020-01-23 17:04:22 +08:00
@bertonzh 可以具体说一下如何利用 call 吗,是指对抛异常的 function 用 call 传参数改变 error 的 message 吗
bertonzh
2020-01-23 17:26:39 +08:00
@syaki 就是用 Function.call,传入字符串来构造函数,然后执行。效果相当于 eval 或者 new Function
zhw2590582
2020-01-24 11:45:56 +08:00
我想到这个,不过异步的应该不符合题目
Promise.reject('error message')

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/640014

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX