From 694146273a7d021c4b5b862952635c06faa77d8d Mon Sep 17 00:00:00 2001 From: Rohit Tanwar <31792358+kriadmin@users.noreply.github.com> Date: Wed, 3 Jan 2018 18:46:16 +0530 Subject: [PATCH] Update howManyTimes.md --- snippets/howManyTimes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/howManyTimes.md b/snippets/howManyTimes.md index 16e048936..3d2cfa91d 100644 --- a/snippets/howManyTimes.md +++ b/snippets/howManyTimes.md @@ -1,6 +1,6 @@ ### howManyTimes -Returns the number of times `num` can be divided by `divisor` without getting a fractional answer. Works for both negative and positive integers.`divisor` can be positive too. +Returns the number of times `num` can be divided by `divisor` without getting a fractional answer. Works for both negative and positive integers.`divisor` can be fractional too. If `divisor` is `-1` or `1` returns `Infinity`. If `divisor` is `-0` or `0` returns `0`. ``` js