freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/rosetta-code/vector-cross-product.arabic.md

881 B

title id challengeType videoUrl localeTitle
Vector cross product 594810f028c0303b75339ad2 5

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.equal(typeof crossProduct, "function", "dotProduct must be a function");'
  - text: ''
    testString: 'assert.equal(crossProduct(), null, "dotProduct() must return null");'
  - text: ''
    testString: 'assert.deepEqual(res12, exp12, "crossProduct([1, 2, 3], [4, 5, 6]) must return [-3, 6, -3].");'

Challenge Seed

function crossProduct() {
    // Good luck!
}

After Test

console.info('after the test');

Solution

// solution required