TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Show HN: Sets in JavaScript

2 点作者 jterenzio超过 12 年前

1 comment

cynwoody超过 12 年前
I wonder if it would be quicker for getHash() to check for object (including functions) first, then for string, then let the rest come as they are, more or less:<p><pre><code> var objectId = 1000000; function getHash2(value) { if (typeof value === 'object' || typeof value === 'function') { if (value === null) return 'null'; value._hash = value._hash || ('[object ' + (objectId++) + ']'); return value._hash; } return typeof value === 'string' ? "'" + value : value }</code></pre>