Converts HTML entities to their corresponding characters in a string
Overall
score
85%
Evaluation — 85%
↑ 1.39xAgent success when using this tile
Build a system that sorts arrays of student objects based on one or more properties.
@generates
/**
* Sorts an array of students by one or more properties.
*
* @param {Array} students - Array of student objects to sort
* @param {string|Function|Array} iteratees - Property name(s) or function(s) to sort by
* @param {string|Array} orders - Optional sort order(s): 'asc' or 'desc'
* @returns {Array} New sorted array of students
*/
function sortStudents(students, iteratees, orders) {
// IMPLEMENTATION HERE
}
module.exports = {
sortStudents,
};Provides collection sorting utilities.
Install with Tessl CLI
npx tessl i tessl/npm-lodash-unescapedocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10