【Edabit 算法 ★☆☆☆☆☆】 Basic Variable Assignment

news/2024/11/20 1:23:31/

【Edabit 算法 ★☆☆☆☆☆】 Basic Variable Assignment

bugs functional_programming language_fundametals strings

Instructions

A student learning JavaScript was trying to make a function. His code should concatenate a passed string name with string "Edabit" and store it in a variable called result. He needs your help to fix this code.

Examples
nameString("Mubashir") // "MubashirEdabit"
nameString("Matt") // "MattEdabit"
nameString("javaScript") // "javaScriptEdabit"
Notes
  • Don’t forget to return the result.
Solutions
function nameString(name){var b = "Edabit" // '==' 改为 '='var result = name + b // '==' 改为 '='return result
}
TestCases
let Test = (function(){return {assertEquals:function(actual,expected){if(actual !== expected){let errorMsg = `actual is ${actual},${expected} is expected`;throw new Error(errorMsg);}}}
})();Test.assertEquals(nameString("Mubashir"), "MubashirEdabit")
Test.assertEquals(nameString("Matt"), "MattEdabit")
Test.assertEquals(nameString("javaScript"), "javaScriptEdabit")
Test.assertEquals(nameString("Airforce"), "AirforceEdabit")

http://www.ppmy.cn/news/1168769.html

相关文章

HJ18 识别有效的IP地址和掩码并进行分类统计 java实现

描述 请解析IP地址和对应的掩码,进行分类识别。要求按照A/B/C/D/E类地址归类,不合法的地址和掩码单独归类。 所有的IP地址划分为 A,B,C,D,E五类 A类地址从1.0.0.0到126.255.255.255; B类地址从128.0.0.0到191.255.255.255; C类地址从192.0.0.0到223…

【Edabit 算法 ★☆☆☆☆☆】 Return Something to Me!

【Edabit 算法 ★☆☆☆☆☆】 Return Something to Me! strings language_fundamentals Instructions Write a function that returns the string "something" joined with a space " " and the given argument a. Examples giveMeSomething(“is bett…

【Python】将Python中的多维列表进行展开

1. 引言 在本教程中,我们将探索在 Python 中展平列表的不同方法。列表展开是指将多维列表转换为一维列表的过程,我们将介绍如何使用 Python 语法和 NumPy 库来分别展平 二维、三维和四维度的列表。 闲话少说,我们直接开始吧! 2…

前端HTML CSS JS风格规范

本文代码规范来自HTML/CSS代码开发规范文档 文件命名规范 使用小写字母、数字和下划线组成文件名。 避免使用特殊字符和空格。 使用语义化的命名,能够清晰地表达出文件的功能或内容。 目录结构规范 使用约定俗成的目录结构,如:src/compon…

C语言字符型

字符型变量作用 作用: 字符型变量用于显示单个字符 如:a、b、c、d、\n等等 字符型变量语法和使用 语法: char 变量名 字符; 如: char a ‘a’; 注意:字符型是用的单引号 ‘ ’ ,并且是单个…

JS随机数功能详解

目录 一、Math.random()函数 二、生成指定范围内的随机整数 三、生成指定范围内的随机浮点数 四、生成指定范围内的随机布尔值 JavaScript中的随机功能可以通过Math对象提供的各种数学函数来实现。其中最常用的是Math.random()函数,它可以返回一个介于0和1之间的…

java的for循环中遇到异常抛出后继续循环执行

java的for循环中遇到异常抛出后继续循环执行 Test public void loopTryCatchTest() throws Exception {Map<String, Object> a new HashMap();a.put("a", "1");a.put("b", null);a.put("c", "3");for (Map.Entry<…

192:最近的系列思考2/犬岛APP 的使用理解

最近的一些契机&#xff0c;导致一些思考&#xff1a; ​ * 与产品经理意志相悖的产品* 与最初的设计定位不匹配的产品社交大牛的APP一上线就引来诸多关注&#xff0c;作为总设计的纯大大非常简明扼要的说明了这个APP的定位&#xff1a;给内涵&#xff08;含&#xff09;有趣的…