D
D
denn2016-03-15 17:51:25
CMS
denn, 2016-03-15 17:51:25

What engine can replace Magento?

I plan to raise an online store, but again I ran into the problem of choosing an engine. Stopped while on free Magento. Are there any other similar "normal" engines for the implementation of an online store?

Answer the question

In order to leave comments, you need to log in

6 answer(s)
W
Web Developer Blog, 2016-03-15
@Alexey_Suprun

PrestaShop, OpenCart,WordPress and many more

A
Alexander Taratin, 2015-01-11
@Taraflex

function Increment(){
    this.v = 0;
}
Increment.prototype.toString = function(){
    return ++this.v;
}

var increment = new Increment();
alert(increment); /* 1 */
alert(increment); /* 2 */
alert(increment + increment); /* 7 */

jsfiddle.net/QW01_01/og47uh23

S
Sergey Melnikov, 2015-01-11
@mlnkv

function Increment() {
  var i = 0;
  this.toString = function() {
    return ++i;
  }
}

var increment = new Increment();

alert(increment);
alert(increment);
alert(increment + increment);

S
Sergey Nalomenko, 2015-01-11
@nalomenko

Specifically so, without methods in any way. And with methods, something like this:

// конструктор
function Increment() {
  this.value = 1;
}
 
// метод в прототипе
Increment.prototype.val = function(speed) {
  return this.value++;
};

//значение поля по умолчанию
Increment.prototype.value = 0;

//Собственно, код
var increment = new Increment();
alert(increment.val()); /* 1 */
alert(increment.val()); /* 2 */
alert(increment.val() + increment.val()); /* 7 */

L
L0k1, 2015-01-11
@L0k1

increment = i++
what exactly is the catch? Or do you think that children's puzzles should be solved for you in the toaster?

R
Rsa97, 2015-01-11
@Rsa97

If you want to be done for you - write to freelancing .
Want a hint:

alert(1); /* 1 */
alert(2); /* 2 */
alert(3 + 4); /* 7 */

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question