Question
Write a javascript function called countRegNumber that takes in a string parameter that looks like this 'CA 182736,CY 523519,CJ 812328' and returns the number of
Write a javascript function called countRegNumber that takes in a string parameter that looks like this 'CA 182736,CY 523519,CJ 812328' and returns the number of registration numbers in the string.
It should also work for this string 'CA 42665, AA 12 RT GP'. Test it with some strings of your own. Use Strings builtin split function. And List objects length function. These asserts should pass: var regCount = countRegNumber('CA 182736,CY 523519,CJ 812328') assert.equal(regCount, 3)
These asserts will test your function:
var regCount = countRegNumber('CA 182736,CY 523519,CJ 812328') assert.equal(regCount, 3);
var regCount = countRegNumber('CA 182736') assert.equal(regCount, 1);
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started