Top answers


Is it fair to describe Augustus' foreign policy as a matter of aggressive expansionism?

This question is highly debated by scholarship, but it's important in understanding what framework Augustus built for the Empire. Contemporary sources don't imply that Augustus was defensive at all; Properti...
HS
4581 Views

How would I go about answering the question "What was the primary motive of the people who went on the First Crusade?"

The first step in answering such a question is to clearly outline your thesis in the introduction. The introduction should be clear and concise, and show immediate engagement with the question. Try to avoid ...
SD
Answered by Sophy D. History tutor
3322 Views

Testing a question

Testing an Answer
T2
1835 Views

How to check if value exists in an object in JavaScript?

Let's consider an example which would answer this question var priceOfFood = { pizza: 14, burger 10 } priceOfFood.hasOwnProperty('pizza') // true priceOfFood['pizza'] // 14 priceOfFood.hasOwnProperty('chips'...
MC
Answered by Maciej C. Javascript tutor
11117 Views

How to sum every number in an array of numbers.

Using the ES2015 syntax it can be done as follows: let numbers = [10, 42, 5, 87, 61, 34, 99]; let sum = numbers.reduce((a,b) => a + b); where the reduce signature is Array.prototype.reduce(accumulator, el...
MC
Answered by Maciej C. Javascript tutor
2129 Views