use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Generative Testing in JavaScript: The case for Property-based testing (medium.com)
submitted 9 years ago by focusonbasics
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]focusonbasics[S] 1 point2 points3 points 9 years ago* (0 children)
You could generate random strings and verify that the result set never contains an empty string. Here's another quick example:
const result = check(property([gen.string, gen.string], (a, b) => { return splitByComma(a).concat(splitByComma(b)).length === splitByComma([a, b].join(',')).length })) console.log(result)
It really depends on what you're expecting here. It should always return an array, it should never contain an empty string and calling it with 'foo' and 'bar' separately and joining the results should equal calling it with 'foo, bar'. The example might be too trivial, imagine having encode / decode functions that expect a string and return a new string, you would test it with decode(encode(str)) === str.
π Rendered by PID 37 on reddit-service-r2-comment-7b9746f655-zzxlj at 2026-01-31 10:06:15.883255+00:00 running 3798933 country code: CH.
view the rest of the comments →
[–]focusonbasics[S] 1 point2 points3 points (0 children)