最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - JSDoc - Correct way to document a method which potentially returns any type? - Stack Overflow

programmeradmin1浏览0评论

I have a utility function which returns a value from your array. However, your array could obviously contain elements of any type, so how do I document that the return type is mixed?

In PHPdoc I would use:

@return mixed

What is the JSDoc equivalent?

I have a utility function which returns a value from your array. However, your array could obviously contain elements of any type, so how do I document that the return type is mixed?

In PHPdoc I would use:

@return mixed

What is the JSDoc equivalent?

Share Improve this question asked Dec 8, 2014 at 18:15 BadHorsieBadHorsie 14.6k31 gold badges126 silver badges195 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 10

You may use asterisk in JSDoc

@returns {*}

Or also, if you know all possible types, you can separate them by pipes

@returns {String|Number|Boolean}

The JSDoc documentation says about type expressions:

You can use any Google Closure Compiler type expression...

The linked page on the Closure Compiler docs says:

The ALL type {*} Indicates that the variable can take on any type.

So you may use @returns {*} for a function that can return any type.

发布评论

评论列表(0)

  1. 暂无评论